2017-05-04 15:56:05 +02:00
|
|
|
version: '3'
|
2016-03-14 21:39:39 +01:00
|
|
|
services:
|
2017-04-11 16:04:56 +02:00
|
|
|
|
2016-03-14 21:39:39 +01:00
|
|
|
db:
|
2016-10-25 13:21:48 +02:00
|
|
|
restart: always
|
2017-10-06 20:37:17 +02:00
|
|
|
image: postgres:9.6-alpine
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- internal_network
|
2017-04-11 16:04:56 +02:00
|
|
|
### Uncomment to enable DB persistance
|
|
|
|
# volumes:
|
|
|
|
# - ./postgres:/var/lib/postgresql/data
|
|
|
|
|
2016-03-14 21:39:39 +01:00
|
|
|
redis:
|
2016-10-25 13:21:48 +02:00
|
|
|
restart: always
|
2017-10-06 20:37:17 +02:00
|
|
|
image: redis:4.0-alpine
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- internal_network
|
2017-04-11 16:04:56 +02:00
|
|
|
### Uncomment to enable REDIS persistance
|
|
|
|
# volumes:
|
|
|
|
# - ./redis:/data
|
|
|
|
|
2018-02-09 23:04:47 +01:00
|
|
|
# es:
|
|
|
|
# restart: always
|
|
|
|
# image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.3
|
|
|
|
# environment:
|
|
|
|
# - "ES_JAVA_OPTS=-Xms512m -Xmx512m"
|
|
|
|
# networks:
|
|
|
|
# - internal_network
|
|
|
|
#### Uncomment to enable ES persistance
|
|
|
|
## volumes:
|
|
|
|
## - ./elasticsearch:/usr/share/elasticsearch/data
|
|
|
|
|
2017-05-04 15:56:05 +02:00
|
|
|
web:
|
2016-11-24 23:46:27 +01:00
|
|
|
build: .
|
2018-03-07 01:57:31 +01:00
|
|
|
image: tootsuite/mastodon
|
2017-05-03 02:04:16 +02:00
|
|
|
restart: always
|
2016-10-15 16:13:16 +02:00
|
|
|
env_file: .env.production
|
2018-05-25 18:50:31 +02:00
|
|
|
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000 -b '0.0.0.0'"
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- external_network
|
|
|
|
- internal_network
|
2016-03-14 21:39:39 +01:00
|
|
|
ports:
|
2018-04-15 13:57:58 +02:00
|
|
|
- "127.0.0.1:3000:3000"
|
2016-03-14 21:39:39 +01:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2018-02-09 23:04:47 +01:00
|
|
|
# - es
|
2016-03-16 12:57:01 +01:00
|
|
|
volumes:
|
|
|
|
- ./public/assets:/mastodon/public/assets
|
2017-05-03 02:04:16 +02:00
|
|
|
- ./public/packs:/mastodon/public/packs
|
2016-03-16 12:57:01 +01:00
|
|
|
- ./public/system:/mastodon/public/system
|
2017-04-11 16:04:56 +02:00
|
|
|
|
2017-02-04 00:34:31 +01:00
|
|
|
streaming:
|
2017-05-04 15:56:05 +02:00
|
|
|
build: .
|
2018-03-07 01:57:31 +01:00
|
|
|
image: tootsuite/mastodon
|
2017-02-04 00:34:31 +01:00
|
|
|
restart: always
|
|
|
|
env_file: .env.production
|
2018-03-06 21:36:46 +01:00
|
|
|
command: yarn start
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- external_network
|
|
|
|
- internal_network
|
2017-02-04 00:34:31 +01:00
|
|
|
ports:
|
2018-04-15 13:57:58 +02:00
|
|
|
- "127.0.0.1:4000:4000"
|
2017-02-04 00:34:31 +01:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2017-04-11 16:04:56 +02:00
|
|
|
|
2016-03-25 02:50:48 +01:00
|
|
|
sidekiq:
|
2017-05-04 15:56:05 +02:00
|
|
|
build: .
|
2018-03-07 01:57:31 +01:00
|
|
|
image: tootsuite/mastodon
|
2016-10-25 13:21:48 +02:00
|
|
|
restart: always
|
2016-10-15 16:13:16 +02:00
|
|
|
env_file: .env.production
|
2017-04-04 00:53:20 +02:00
|
|
|
command: bundle exec sidekiq -q default -q mailers -q pull -q push
|
2016-03-25 02:50:48 +01:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- external_network
|
|
|
|
- internal_network
|
2016-03-25 02:50:48 +01:00
|
|
|
volumes:
|
2018-01-24 13:29:32 +01:00
|
|
|
- ./public/packs:/mastodon/public/packs
|
2016-03-25 02:50:48 +01:00
|
|
|
- ./public/system:/mastodon/public/system
|
2018-06-26 20:34:12 +02:00
|
|
|
## Uncomment to enable federation with tor instances along with adding the following ENV variables
|
|
|
|
## http_proxy=http://privoxy:8118
|
|
|
|
## ALLOW_ACCESS_TO_HIDDEN_SERVICE=true
|
|
|
|
# tor:
|
|
|
|
# build: https://github.com/usbsnowcrash/docker-tor.git
|
|
|
|
# networks:
|
|
|
|
# - external_network
|
|
|
|
# - internal_network
|
|
|
|
#
|
|
|
|
# privoxy:
|
|
|
|
# build: https://github.com/usbsnowcrash/docker-privoxy.git
|
|
|
|
# command: /opt/sbin/privoxy --no-daemon --user privoxy.privoxy /opt/config
|
|
|
|
# volumes:
|
|
|
|
# - ./priv-config:/opt/config
|
|
|
|
# networks:
|
|
|
|
# - external_network
|
|
|
|
# - internal_network
|
2018-02-03 18:44:22 +01:00
|
|
|
|
|
|
|
networks:
|
|
|
|
external_network:
|
|
|
|
internal_network:
|
|
|
|
internal: true
|