Skip to content

Instantly share code, notes, and snippets.

@aharonamir
Created June 21, 2018 14:06
Show Gist options
  • Save aharonamir/3706133993f183ba2ef3ec8895bb678e to your computer and use it in GitHub Desktop.
Save aharonamir/3706133993f183ba2ef3ec8895bb678e to your computer and use it in GitHub Desktop.
develop compose file
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