Skip to content

Instantly share code, notes, and snippets.

@matheuslc
Created December 2, 2016 16:10
Show Gist options
  • Save matheuslc/86ffa4a2289ef9c56675bdd0f2aae4b3 to your computer and use it in GitHub Desktop.
Save matheuslc/86ffa4a2289ef9c56675bdd0f2aae4b3 to your computer and use it in GitHub Desktop.
test
version: '2'
services:
api:
build: ./api
ports:
- "localhost:3000:3000"
volumes:
- /Users/matheuslc/healfies/healfies_api:/usr/src/api
links:
- mongo
- redis
frontend:
build: ./frontend
ports:
- "localhost:9005:8080"
volumes:
- /Users/matheuslc/healfies/healfies_frontend:/usr/src/frontend
notifier:
build: ./notifier
ports:
- "localhost:9080:9080"
volumes:
- /Users/matheuslc/healfies/healfies_notifier:/usr/src/notifier
redis:
image: redis
ports:
- "localhost:6379:6379"
volumes:
- /Users/matheuslc/healfies/shared:/tmp/shared
mongo:
build: mongo
ports:
- "localhost:27017:27017"
volumes:
- /Users/matheuslc/healfies/shared:/tmp/shared
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment