Skip to content

Instantly share code, notes, and snippets.

@xsota
Last active October 11, 2016 12:56
Show Gist options
  • Save xsota/5096bfa3e883cfb18af4ac12cbb511b3 to your computer and use it in GitHub Desktop.
Save xsota/5096bfa3e883cfb18af4ac12cbb511b3 to your computer and use it in GitHub Desktop.
version: '2'
services:
db:
image: postgres
web:
build: .
command: bundle exec rails s -p 3000 -b '0.0.0.0'
volumes:
- .:/myapp
ports:
- "3000:3000"
depends_on:
- db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment