Created
November 11, 2015 00:26
-
-
Save silverbux/6595795cedc655f8165d 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
web: | |
build: ./node | |
volumes: | |
- "app:/src/app" | |
expose: | |
- "3000" | |
links: | |
- "db:redis" | |
- "mongodb" | |
command: nodemon -L app/server/server.js | |
nginx: | |
restart: always | |
build: ./nginx/ | |
ports: | |
- "80:80" | |
volumes: | |
- /www/public | |
volumes_from: | |
- web | |
links: | |
- web:web | |
db: | |
image: redis | |
mongodb: | |
build: ./mongodb/ | |
ports: | |
- "27017:27017" |
pongstr
commented
Nov 11, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment