Newer
Older
version: '2'
networks:
lb_web:
external: true
back:
driver: bridge
services:
db:
restart: always
redis:
restart: always
image: redis:alpine
networks:
- back
web:
volumes_from:
- app
depends_on:
- app
- streaming
networks:
- back
- lb_web
env_file: .env.production
command: bundle exec rails s -p 3000 -b '0.0.0.0'
depends_on:
- db
- redis
volumes:
- ./public/assets:/mastodon/public/assets
env_file: .env.production
command: npm run start
depends_on:
- db
- redis
networks:
- back
sidekiq:
restart: always
env_file: .env.production
command: bundle exec sidekiq -q default -q mailers -q pull -q push
depends_on:
- db
- redis
volumes:
- ./public/system:/mastodon/public/system