46 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-11-15 11:56:48 +01:00
services:
2023-12-26 16:40:19 +01:00
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/services/redis.yml.j2' %}
2023-12-26 16:40:19 +01:00
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
2023-12-26 16:40:19 +01:00
2022-11-15 11:56:48 +01:00
web:
2025-02-03 11:44:13 +01:00
image: ghcr.io/mastodon/mastodon:{{applications.mastodon.version}}
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
2022-11-15 11:56:48 +01:00
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:{{ports.localhost.http[application_id]}}:3000"
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
2022-11-15 11:56:48 +01:00
volumes:
- data:/mastodon/public/system
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/networks.yml.j2' %}
2022-11-15 11:56:48 +01:00
streaming:
2025-02-03 11:44:13 +01:00
image: ghcr.io/mastodon/mastodon-streaming:{{applications.mastodon.version}}
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
2022-11-15 11:56:48 +01:00
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:{{ports.localhost.web_socket[application_id]}}:4000"
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
{% include 'templates/docker/container/networks.yml.j2' %}
2022-11-15 11:56:48 +01:00
sidekiq:
2025-02-03 11:44:13 +01:00
image: ghcr.io/mastodon/mastodon:{{applications.mastodon.version}}
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
2022-11-15 11:56:48 +01:00
command: bundle exec sidekiq
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
2022-11-15 11:56:48 +01:00
volumes:
- data:/mastodon/public/system
healthcheck:
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/networks.yml.j2' %}
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/volumes.yml.j2' %}
2022-11-15 11:56:48 +01:00
redis:
data:
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/networks.yml.j2' %}