Created
October 22, 2015 16:35
-
-
Save dmitrym0/b6e51aa453e7c2ac3734 to your computer and use it in GitHub Desktop.
Attempt to create a docker image with bundle caching
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
bundle: | |
image: phusion/passenger-full | |
env_file: | |
- '.env.web' | |
volumes: | |
- /bundle-volume | |
web: | |
build: . | |
volumes: | |
- .:/home/app | |
ports: | |
- "3000:3000" | |
- "2800:80" | |
links: | |
- db | |
env_file: | |
- '.env.web' | |
volumes_from: | |
- bundle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment