Created
October 25, 2019 12:55
-
-
Save desaijay315/c920736c6263f91e9d205d57d4fbc1a8 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