Created
October 25, 2019 12:57
-
-
Save desaijay315/a2745b843cc91e35e0d14cbf0a44c6dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
app: | |
container_name: docker_nodejsauth | |
restart: always | |
build: . | |
ports: | |
- 4001:4001 | |
links: | |
- mongo | |
mongo: | |
container_name: mongo | |
restart: always | |
image: mongo | |
ports: | |
- 27017:27017 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment