2017-05-04 14:56:05 +01:00
|
|
|
version: '3'
|
2016-03-14 20:39:39 +00:00
|
|
|
services:
|
|
|
|
db:
|
2016-10-25 12:21:48 +01:00
|
|
|
restart: always
|
2021-11-18 21:00:27 +00:00
|
|
|
image: postgres:14-alpine
|
2020-04-12 15:41:54 +01:00
|
|
|
shm_size: 256mb
|
2018-02-03 17:44:22 +00:00
|
|
|
networks:
|
|
|
|
- internal_network
|
2018-12-28 23:43:41 +00:00
|
|
|
healthcheck:
|
2022-03-21 03:46:11 +00:00
|
|
|
test: ['CMD', 'pg_isready', '-U', 'postgres']
|
2018-10-22 23:08:25 +01:00
|
|
|
volumes:
|
2021-11-18 21:00:27 +00:00
|
|
|
- ./postgres14:/var/lib/postgresql/data
|
|
|
|
environment:
|
2022-03-21 03:46:11 +00:00
|
|
|
- 'POSTGRES_HOST_AUTH_METHOD=trust'
|
2017-04-11 15:04:56 +01:00
|
|
|
|
2016-03-14 20:39:39 +00:00
|
|
|
redis:
|
2016-10-25 12:21:48 +01:00
|
|
|
restart: always
|
2022-08-27 16:40:46 +01:00
|
|
|
image: redis:7-alpine
|
2018-02-03 17:44:22 +00:00
|
|
|
networks:
|
|
|
|
- internal_network
|
2018-12-28 23:43:41 +00:00
|
|
|
healthcheck:
|
2022-03-21 03:46:11 +00:00
|
|
|
test: ['CMD', 'redis-cli', 'ping']
|
2018-10-22 23:08:25 +01:00
|
|
|
volumes:
|
|
|
|
- ./redis:/data
|
2017-04-11 15:04:56 +01:00
|
|
|
|
2022-03-21 03:46:11 +00:00
|
|
|
# es:
|
|
|
|
# restart: always
|
2022-06-15 15:35:36 +01:00
|
|
|
# image: docker.elastic.co/elasticsearch/elasticsearch:7.17.4
|
2022-03-21 03:46:11 +00:00
|
|
|
# environment:
|
2022-06-15 15:35:36 +01:00
|
|
|
# - "ES_JAVA_OPTS=-Xms512m -Xmx512m -Des.enforce.bootstrap.checks=true"
|
|
|
|
# - "xpack.license.self_generated.type=basic"
|
|
|
|
# - "xpack.security.enabled=false"
|
|
|
|
# - "xpack.watcher.enabled=false"
|
|
|
|
# - "xpack.graph.enabled=false"
|
|
|
|
# - "xpack.ml.enabled=false"
|
|
|
|
# - "bootstrap.memory_lock=true"
|
2022-03-21 03:46:11 +00:00
|
|
|
# - "cluster.name=es-mastodon"
|
|
|
|
# - "discovery.type=single-node"
|
2022-06-15 15:35:36 +01:00
|
|
|
# - "thread_pool.write.queue_size=1000"
|
2022-03-21 03:46:11 +00:00
|
|
|
# networks:
|
2022-06-15 15:35:36 +01:00
|
|
|
# - external_network
|
2022-03-21 03:46:11 +00:00
|
|
|
# - internal_network
|
|
|
|
# healthcheck:
|
|
|
|
# test: ["CMD-SHELL", "curl --silent --fail localhost:9200/_cluster/health || exit 1"]
|
|
|
|
# volumes:
|
|
|
|
# - ./elasticsearch:/usr/share/elasticsearch/data
|
|
|
|
# ulimits:
|
|
|
|
# memlock:
|
|
|
|
# soft: -1
|
|
|
|
# hard: -1
|
2022-06-15 15:35:36 +01:00
|
|
|
# nofile:
|
|
|
|
# soft: 65536
|
|
|
|
# hard: 65536
|
|
|
|
# ports:
|
|
|
|
# - '127.0.0.1:9200:9200'
|
2018-02-09 22:04:47 +00:00
|
|
|
|
2017-05-04 14:56:05 +01:00
|
|
|
web:
|
2016-11-24 22:46:27 +00:00
|
|
|
build: .
|
2023-03-15 15:41:13 +00:00
|
|
|
image: ghcr.io/mastodon/mastodon
|
2017-05-03 01:04:16 +01:00
|
|
|
restart: always
|
2016-10-15 15:13:16 +01:00
|
|
|
env_file: .env.production
|
2019-07-18 19:28:05 +01:00
|
|
|
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
|
2018-02-03 17:44:22 +00:00
|
|
|
networks:
|
|
|
|
- external_network
|
|
|
|
- internal_network
|
2018-12-28 23:43:41 +00:00
|
|
|
healthcheck:
|
2022-03-21 03:46:11 +00:00
|
|
|
# prettier-ignore
|
|
|
|
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:3000/health || exit 1']
|
2016-03-14 20:39:39 +00:00
|
|
|
ports:
|
2022-03-21 03:46:11 +00:00
|
|
|
- '127.0.0.1:3000:3000'
|
2016-03-14 20:39:39 +00:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2022-03-21 03:46:11 +00:00
|
|
|
# - es
|
2016-03-16 11:57:01 +00:00
|
|
|
volumes:
|
|
|
|
- ./public/system:/mastodon/public/system
|
2017-04-11 15:04:56 +01:00
|
|
|
|
2017-02-03 23:34:31 +00:00
|
|
|
streaming:
|
2017-05-04 14:56:05 +01:00
|
|
|
build: .
|
2023-03-15 15:41:13 +00:00
|
|
|
image: ghcr.io/mastodon/mastodon
|
2017-02-03 23:34:31 +00:00
|
|
|
restart: always
|
|
|
|
env_file: .env.production
|
2019-07-18 19:28:05 +01:00
|
|
|
command: node ./streaming
|
2018-02-03 17:44:22 +00:00
|
|
|
networks:
|
|
|
|
- external_network
|
|
|
|
- internal_network
|
2018-12-28 23:43:41 +00:00
|
|
|
healthcheck:
|
2022-03-21 03:46:11 +00:00
|
|
|
# prettier-ignore
|
|
|
|
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1']
|
2017-02-03 23:34:31 +00:00
|
|
|
ports:
|
2022-03-21 03:46:11 +00:00
|
|
|
- '127.0.0.1:4000:4000'
|
2017-02-03 23:34:31 +00:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2017-04-11 15:04:56 +01:00
|
|
|
|
2016-03-25 01:50:48 +00:00
|
|
|
sidekiq:
|
2017-05-04 14:56:05 +01:00
|
|
|
build: .
|
2023-03-15 15:41:13 +00:00
|
|
|
image: ghcr.io/mastodon/mastodon
|
2016-10-25 12:21:48 +01:00
|
|
|
restart: always
|
2016-10-15 15:13:16 +01:00
|
|
|
env_file: .env.production
|
2018-10-22 23:08:25 +01:00
|
|
|
command: bundle exec sidekiq
|
2016-03-25 01:50:48 +00:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2018-02-03 17:44:22 +00:00
|
|
|
networks:
|
|
|
|
- external_network
|
|
|
|
- internal_network
|
2016-03-25 01:50:48 +00:00
|
|
|
volumes:
|
|
|
|
- ./public/system:/mastodon/public/system
|
2022-01-26 17:08:49 +00:00
|
|
|
healthcheck:
|
2022-03-21 03:46:11 +00:00
|
|
|
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
|
2022-01-26 17:08:49 +00:00
|
|
|
|
2022-03-21 03:46:11 +00: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:
|
|
|
|
# image: sirboops/tor
|
|
|
|
# networks:
|
|
|
|
# - external_network
|
|
|
|
# - internal_network
|
|
|
|
#
|
|
|
|
# privoxy:
|
|
|
|
# image: sirboops/privoxy
|
|
|
|
# volumes:
|
|
|
|
# - ./priv-config:/opt/config
|
|
|
|
# networks:
|
|
|
|
# - external_network
|
|
|
|
# - internal_network
|
2018-02-03 17:44:22 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
external_network:
|
|
|
|
internal_network:
|
|
|
|
internal: true
|