mirror of
https://github.com/wahyd4/libr-2.git
synced 2026-08-09 05:15:53 +10:00
23 lines
327 B
YAML
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
|