mastodon/docker-compose.yml

42 lines
856 B
YAML
Raw Normal View History

version: '2'
services:
db:
2016-10-25 11:21:48 +00:00
restart: always
2017-04-03 01:09:56 +00:00
image: postgres:alpine
redis:
2016-10-25 11:21:48 +00:00
restart: always
2017-04-03 01:09:56 +00:00
image: redis:alpine
web:
2016-10-25 11:21:48 +00:00
restart: always
2016-11-24 22:46:27 +00:00
build: .
env_file: .env.production
command: bundle exec rails s -p 3000 -b '0.0.0.0'
ports:
- "3000:3000"
depends_on:
- db
- redis
volumes:
- ./public/assets:/mastodon/public/assets
- ./public/system:/mastodon/public/system
streaming:
restart: always
build: .
env_file: .env.production
command: npm run start
ports:
- "4000:4000"
depends_on:
- db
- redis
sidekiq:
2016-10-25 11:21:48 +00:00
restart: always
2016-11-24 22:46:27 +00:00
build: .
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