Skip to content

Instantly share code, notes, and snippets.

@dmitrym0
Created October 22, 2015 16:35
Show Gist options
  • Save dmitrym0/b6e51aa453e7c2ac3734 to your computer and use it in GitHub Desktop.
Save dmitrym0/b6e51aa453e7c2ac3734 to your computer and use it in GitHub Desktop.
Attempt to create a docker image with bundle caching
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