computer-playbook/roles/docker-mastodon/templates/docker-compose.yml.j2

65 lines
1.9 KiB
Plaintext
Raw Normal View History

2022-11-15 11:56:48 +01:00
version: '3'
services:
2023-12-26 16:40:19 +01:00
{% include 'templates/docker-redis-service.yml.j2' %}
{% include 'templates/docker-{{ database_type }}-service.yml.j2' %}
2023-12-26 16:40:19 +01:00
2022-11-15 11:56:48 +01:00
web:
image: tootsuite/mastodon:{{version_mastodon}}
2022-11-15 11:56:48 +01:00
restart: always
env_file: .env.production
command: bash -c "rm -f /mastodon/tmp/pids/server.pid; bundle exec rails s -p 3000"
healthcheck:
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:3000/health || exit 1']
ports:
- "127.0.0.1:{{http_port}}:3000"
depends_on:
{% include 'templates/docker-depends-on-central-database.yml.j2' %}
redis:
condition: service_healthy
2022-11-15 11:56:48 +01:00
volumes:
- data:/mastodon/public/system
2022-11-15 21:43:05 +01:00
logging:
driver: journald
{% include 'templates/docker-networks-for-container.yml.j2' %}
2022-11-15 11:56:48 +01:00
streaming:
image: tootsuite/mastodon:{{version_mastodon}}
2022-11-15 11:56:48 +01:00
restart: always
env_file: .env.production
command: node ./streaming
healthcheck:
test: ['CMD-SHELL', 'wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1']
ports:
- "127.0.0.1:{{stream_port}}:4000"
{% include 'templates/docker-depends-on-central-database.yml.j2' %}
redis:
condition: service_healthy
2022-11-15 21:43:05 +01:00
logging:
driver: journald
{% include 'templates/docker-networks-for-container.yml.j2' %}
2022-11-15 11:56:48 +01:00
sidekiq:
image: tootsuite/mastodon:{{version_mastodon}}
2022-11-15 11:56:48 +01:00
restart: always
env_file: .env.production
command: bundle exec sidekiq
depends_on:
{% include 'templates/docker-depends-on-central-database.yml.j2' %}
redis:
condition: service_healthy
2022-11-15 11:56:48 +01:00
volumes:
- data:/mastodon/public/system
healthcheck:
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
2022-11-15 21:43:05 +01:00
logging:
driver: journald
{% include 'templates/docker-networks-for-container.yml.j2' %}
2022-11-15 11:56:48 +01:00
volumes:
{% include 'templates/docker-database-volume.yml.j2' %}
2022-11-15 11:56:48 +01:00
redis:
data:
{% include 'templates/docker-networks-for-role.yml.j2' %}