Files
libr-2/docker-compose.yml
T
2015-08-17 22:53:24 +08:00

23 lines
327 B
YAML

web:
build: .
volumes:
- .:/myapp
ports:
- "3000:3000"
links:
- redis
- postgres
command: bundle exec rails server -b 0.0.0.0
worker:
build: .
volumes:
- .:/myapp
links:
- redis
- postgres
command: bundle exec sidekiq -C config/sidekiq.yml
redis:
image: redis:latest
postgres:
image: postgres:latest