Files
railsgoat/docker-compose.yml
T
2016-07-03 20:17:29 -07:00

10 lines
158 B
YAML

version: '2'
services:
web:
build: .
command: bundle exec rails s -p 3000 -b '0.0.0.0'
volumes:
- .:/myapp
ports:
- "3000:3000"