notebook/docker-compose.yml
2016-10-12 19:17:10 -04:00

10 lines
237 B
YAML

version: '2'
services:
web:
build: .
command: bash -c "rake db:migrate && rm -f tmp/pids/server.pid && rails server -b '0.0.0.0'"
volumes:
- .:/notebook-ai
ports:
- "3000:3000"