Last active
December 2, 2019 15:40
-
-
Save esmerino/c6543dd014b753f6eb3d9dd50df9c5dd 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: | |
build: . | |
command: foreman start | |
volumes: | |
- .:/app | |
- ~/.ssh:/root/.ssh:ro | |
ports: | |
- "3000:3000" | |
links: | |
- mongo | |
- redis | |
mongo: | |
container_name: bx_mongo | |
image: mongo | |
ports: | |
- 27017:27017 | |
redis: | |
container_name: bx_redis | |
image: redis | |
ports: | |
- 6379:6379 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment