2016-03-15 07:39:39 +11:00
|
|
|
version: '2'
|
|
|
|
services:
|
2017-04-12 00:04:56 +10:00
|
|
|
|
2016-03-15 07:39:39 +11:00
|
|
|
db:
|
2016-10-25 22:21:48 +11:00
|
|
|
restart: always
|
2017-04-03 11:09:56 +10:00
|
|
|
image: postgres:alpine
|
2017-04-12 00:04:56 +10:00
|
|
|
### Uncomment to enable DB persistance
|
|
|
|
# volumes:
|
|
|
|
# - ./postgres:/var/lib/postgresql/data
|
|
|
|
|
2016-03-15 07:39:39 +11:00
|
|
|
redis:
|
2016-10-25 22:21:48 +11:00
|
|
|
restart: always
|
2017-04-03 11:09:56 +10:00
|
|
|
image: redis:alpine
|
2017-04-12 00:04:56 +10:00
|
|
|
### Uncomment to enable REDIS persistance
|
|
|
|
# volumes:
|
|
|
|
# - ./redis:/data
|
|
|
|
|
2016-03-25 12:50:48 +11:00
|
|
|
web:
|
2016-10-25 22:21:48 +11:00
|
|
|
restart: always
|
2016-11-25 09:46:27 +11:00
|
|
|
build: .
|
2017-04-15 10:07:59 +10:00
|
|
|
image: gargron/mastodon
|
2016-10-16 01:13:16 +11:00
|
|
|
env_file: .env.production
|
2016-03-15 07:39:39 +11:00
|
|
|
command: bundle exec rails s -p 3000 -b '0.0.0.0'
|
|
|
|
ports:
|
|
|
|
- "3000:3000"
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2016-03-16 22:57:01 +11:00
|
|
|
volumes:
|
|
|
|
- ./public/assets:/mastodon/public/assets
|
|
|
|
- ./public/system:/mastodon/public/system
|
2017-04-12 00:04:56 +10:00
|
|
|
|
2017-02-04 10:34:31 +11:00
|
|
|
streaming:
|
|
|
|
restart: always
|
|
|
|
build: .
|
2017-04-15 10:07:59 +10:00
|
|
|
image: gargron/mastodon
|
2017-02-04 10:34:31 +11:00
|
|
|
env_file: .env.production
|
|
|
|
command: npm run start
|
|
|
|
ports:
|
|
|
|
- "4000:4000"
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2017-04-12 00:04:56 +10:00
|
|
|
|
2016-03-25 12:50:48 +11:00
|
|
|
sidekiq:
|
2016-10-25 22:21:48 +11:00
|
|
|
restart: always
|
2016-11-25 09:46:27 +11:00
|
|
|
build: .
|
2017-04-15 10:07:59 +10:00
|
|
|
image: gargron/mastodon
|
2016-10-16 01:13:16 +11:00
|
|
|
env_file: .env.production
|
2017-04-04 08:53:20 +10:00
|
|
|
command: bundle exec sidekiq -q default -q mailers -q pull -q push
|
2016-03-25 12:50:48 +11:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
|
|
|
volumes:
|
|
|
|
- ./public/system:/mastodon/public/system
|