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