2024-06-06 01:54:59 +02:00
|
|
|
# This file is designed for production server deployment, not local development work
|
|
|
|
# For a containerized local dev environment, see: https://github.com/mastodon/mastodon/blob/main/README.md#docker
|
|
|
|
|
2016-03-14 21:39:39 +01:00
|
|
|
services:
|
|
|
|
db:
|
2016-10-25 13:21:48 +02:00
|
|
|
restart: always
|
2021-11-18 22:00:27 +01:00
|
|
|
image: postgres:14-alpine
|
2020-04-12 16:41:54 +02:00
|
|
|
shm_size: 256mb
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- internal_network
|
2018-12-29 00:43:41 +01:00
|
|
|
healthcheck:
|
2022-03-21 04:46:11 +01:00
|
|
|
test: ['CMD', 'pg_isready', '-U', 'postgres']
|
2018-10-23 00:08:25 +02:00
|
|
|
volumes:
|
2021-11-18 22:00:27 +01:00
|
|
|
- ./postgres14:/var/lib/postgresql/data
|
|
|
|
environment:
|
2022-03-21 04:46:11 +01:00
|
|
|
- 'POSTGRES_HOST_AUTH_METHOD=trust'
|
2017-04-11 16:04:56 +02:00
|
|
|
|
2016-03-14 21:39:39 +01:00
|
|
|
redis:
|
2016-10-25 13:21:48 +02:00
|
|
|
restart: always
|
2022-08-27 17:40:46 +02:00
|
|
|
image: redis:7-alpine
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- internal_network
|
2018-12-29 00:43:41 +01:00
|
|
|
healthcheck:
|
2022-03-21 04:46:11 +01:00
|
|
|
test: ['CMD', 'redis-cli', 'ping']
|
2018-10-23 00:08:25 +02:00
|
|
|
volumes:
|
|
|
|
- ./redis:/data
|
2017-04-11 16:04:56 +02:00
|
|
|
|
2022-03-21 04:46:11 +01:00
|
|
|
# es:
|
|
|
|
# restart: always
|
2022-06-15 16:35:36 +02:00
|
|
|
# image: docker.elastic.co/elasticsearch/elasticsearch:7.17.4
|
2022-03-21 04:46:11 +01:00
|
|
|
# environment:
|
2022-06-15 16:35:36 +02: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 04:46:11 +01:00
|
|
|
# - "cluster.name=es-mastodon"
|
|
|
|
# - "discovery.type=single-node"
|
2022-06-15 16:35:36 +02:00
|
|
|
# - "thread_pool.write.queue_size=1000"
|
2022-03-21 04:46:11 +01:00
|
|
|
# networks:
|
2022-06-15 16:35:36 +02:00
|
|
|
# - external_network
|
2022-03-21 04:46:11 +01: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 16:35:36 +02:00
|
|
|
# nofile:
|
|
|
|
# soft: 65536
|
|
|
|
# hard: 65536
|
|
|
|
# ports:
|
|
|
|
# - '127.0.0.1:9200:9200'
|
2018-02-09 23:04:47 +01:00
|
|
|
|
2017-05-04 15:56:05 +02:00
|
|
|
web:
|
2024-08-27 18:05:19 +02:00
|
|
|
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
|
|
|
|
# build: .
|
2024-10-08 14:24:59 +02:00
|
|
|
image: ghcr.io/mastodon/mastodon:v4.3.0
|
2017-05-03 02:04:16 +02:00
|
|
|
restart: always
|
2016-10-15 16:13:16 +02:00
|
|
|
env_file: .env.production
|
2023-12-01 12:06:37 +01:00
|
|
|
command: bundle exec puma -C config/puma.rb
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- external_network
|
|
|
|
- internal_network
|
2018-12-29 00:43:41 +01:00
|
|
|
healthcheck:
|
2022-03-21 04:46:11 +01:00
|
|
|
# prettier-ignore
|
2024-08-23 18:00:07 +02:00
|
|
|
test: ['CMD-SHELL',"curl -s --noproxy localhost localhost:3000/health | grep -q 'OK' || exit 1"]
|
2016-03-14 21:39:39 +01:00
|
|
|
ports:
|
2022-03-21 04:46:11 +01:00
|
|
|
- '127.0.0.1:3000:3000'
|
2016-03-14 21:39:39 +01:00
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2022-03-21 04:46:11 +01:00
|
|
|
# - es
|
2016-03-16 12:57:01 +01:00
|
|
|
volumes:
|
|
|
|
- ./public/system:/mastodon/public/system
|
2017-04-11 16:04:56 +02:00
|
|
|
|
2017-02-04 00:34:31 +01:00
|
|
|
streaming:
|
2024-08-27 18:05:19 +02:00
|
|
|
# You can uncomment the following lines if you want to not use the prebuilt image, for example if you have local code changes
|
|
|
|
# build:
|
|
|
|
# dockerfile: ./streaming/Dockerfile
|
|
|
|
# context: .
|
2024-10-08 14:24:59 +02:00
|
|
|
image: ghcr.io/mastodon/mastodon-streaming:v4.3.0
|
2017-02-04 00:34:31 +01:00
|
|
|
restart: always
|
|
|
|
env_file: .env.production
|
2024-08-23 18:00:07 +02:00
|
|
|
command: node ./streaming/index.js
|
2018-02-03 18:44:22 +01:00
|
|
|
networks:
|
|
|
|
- external_network
|
|
|
|
- internal_network
|
2018-12-29 00:43:41 +01:00
|
|
|
healthcheck:
|
2022-03-21 04:46:11 +01:00
|
|
|
# prettier-ignore
|
2024-08-27 14:51:34 +02:00
|
|
|
test: ['CMD-SHELL', "curl -s --noproxy localhost localhost:4000/api/v1/streaming/health | grep -q 'OK' || exit 1"]
|
2017-02-04 00:34:31 +01:00
|
|
|
ports:
|
2022-03-21 04:46:11 +01: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: .
|
2024-10-08 14:24:59 +02:00
|
|
|
image: ghcr.io/mastodon/mastodon:v4.3.0
|
2016-10-25 13:21:48 +02:00
|
|
|
restart: always
|
2016-10-15 16:13:16 +02:00
|
|
|
env_file: .env.production
|
2018-10-23 00:08:25 +02:00
|
|
|
command: bundle exec sidekiq
|
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:
|
|
|
|
- ./public/system:/mastodon/public/system
|
2022-01-26 18:08:49 +01:00
|
|
|
healthcheck:
|
2022-03-21 04:46:11 +01:00
|
|
|
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
|
2022-01-26 18:08:49 +01:00
|
|
|
|
2022-03-21 04:46:11 +01:00
|
|
|
## Uncomment to enable federation with tor instances along with adding the following ENV variables
|
2023-10-17 15:24:45 +02:00
|
|
|
## http_hidden_proxy=http://privoxy:8118
|
2022-03-21 04:46:11 +01:00
|
|
|
## 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 18:44:22 +01:00
|
|
|
|
|
|
|
networks:
|
|
|
|
external_network:
|
|
|
|
internal_network:
|
|
|
|
internal: true
|