Created
June 21, 2018 14:06
-
-
Save aharonamir/3706133993f183ba2ef3ec8895bb678e to your computer and use it in GitHub Desktop.
develop compose file
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: '2' | |
services: | |
##### the develop image you've build | |
### don't forget to open ports for your app | |
dev-image: | |
image: your-company/your-project/develop | |
ports: | |
- "2000:2000" | |
- "50010:50010" | |
privileged: true | |
container_name: devenv | |
# mapping your project folder (.) to /home/develop/project | |
volumes: | |
- "./:/home/develop/project" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment