1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-10 04:19:24 +02:00
dockerfiles/mastodon/docker-compose.yml

134 lines
3.3 KiB
YAML
Raw Normal View History

2022-11-08 05:07:31 +02:00
version: '3'
2020-06-04 11:52:42 +02:00
services:
2022-11-08 05:07:31 +02:00
db:
restart: always
image: postgres:14-alpine
shm_size: 256mb
networks:
- internal_network
healthcheck:
test: ['CMD', 'pg_isready', '-U', 'postgres']
volumes:
- ./postgres14:/var/lib/postgresql/data
environment:
- 'POSTGRES_HOST_AUTH_METHOD=trust'
redis:
restart: always
image: redis:7-alpine
networks:
- internal_network
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
volumes:
- ./redis:/data
# es:
# restart: always
# image: docker.elastic.co/elasticsearch/elasticsearch:7.17.4
# environment:
# - "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"
# - "cluster.name=es-mastodon"
# - "discovery.type=single-node"
# - "thread_pool.write.queue_size=1000"
# networks:
# - external_network
# - 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
# nofile:
# soft: 65536
# hard: 65536
# ports:
# - '127.0.0.1:9200:9200'
2020-06-04 11:52:42 +02:00
web:
2022-11-08 05:07:31 +02:00
build: .
2020-06-04 11:52:42 +02:00
image: tootsuite/mastodon
2022-11-08 05:07:31 +02:00
restart: always
env_file: .env.production
2020-06-04 11:52:42 +02:00
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
2022-11-08 05:07:31 +02:00
networks:
- external_network
- internal_network
2020-06-04 11:52:42 +02:00
healthcheck:
2022-11-08 05:07:31 +02:00
# prettier-ignore
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:3000/health || exit 1']
ports:
- '127.0.0.1:3000:3000'
2020-06-04 11:52:42 +02:00
depends_on:
- db
- redis
2022-11-08 05:07:31 +02:00
# - es
volumes:
- ./public/system:/mastodon/public/system
2020-06-04 11:52:42 +02:00
streaming:
2022-11-08 05:07:31 +02:00
build: .
2020-06-04 11:52:42 +02:00
image: tootsuite/mastodon
2022-11-08 05:07:31 +02:00
restart: always
env_file: .env.production
2020-06-04 11:52:42 +02:00
command: node ./streaming
2022-11-08 05:07:31 +02:00
networks:
- external_network
- internal_network
2020-06-04 11:52:42 +02:00
healthcheck:
2022-11-08 05:07:31 +02:00
# prettier-ignore
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1']
ports:
- '127.0.0.1:4000:4000'
2020-06-04 11:52:42 +02:00
depends_on:
- db
- redis
sidekiq:
2022-11-08 05:07:31 +02:00
build: .
2020-06-04 11:52:42 +02:00
image: tootsuite/mastodon
2022-11-08 05:07:31 +02:00
restart: always
env_file: .env.production
2020-06-04 11:52:42 +02:00
command: bundle exec sidekiq
depends_on:
- db
- redis
2022-11-08 05:07:31 +02:00
networks:
- external_network
- internal_network
2020-06-04 11:52:42 +02:00
volumes:
2022-11-08 05:07:31 +02:00
- ./public/system:/mastodon/public/system
healthcheck:
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
2020-06-04 11:52:42 +02:00
2022-11-08 05:07:31 +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:
# image: sirboops/tor
# networks:
# - external_network
# - internal_network
#
# privoxy:
# image: sirboops/privoxy
# volumes:
# - ./priv-config:/opt/config
# networks:
# - external_network
# - internal_network
networks:
external_network:
internal_network:
internal: true