mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 02:33:10 +01:00
55 lines
1.8 KiB
Django/Jinja
55 lines
1.8 KiB
Django/Jinja
services:
|
|
|
|
{% include 'templates/docker/services/redis.yml.j2' %}
|
|
|
|
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
|
|
|
|
web:
|
|
image: ghcr.io/mastodon/mastodon:{{mastodon_version}}
|
|
restart: {{docker_restart_policy}}
|
|
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"
|
|
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
|
volumes:
|
|
- data:/mastodon/public/system
|
|
logging:
|
|
driver: journald
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
|
|
|
streaming:
|
|
image: ghcr.io/mastodon/mastodon:{{mastodon_version}}
|
|
restart: {{docker_restart_policy}}
|
|
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/container/depends-on-database-redis.yml.j2' %}
|
|
logging:
|
|
driver: journald
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
|
|
|
sidekiq:
|
|
image: ghcr.io/mastodon/mastodon:{{mastodon_version}}
|
|
restart: {{docker_restart_policy}}
|
|
env_file: .env.production
|
|
command: bundle exec sidekiq
|
|
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
|
volumes:
|
|
- data:/mastodon/public/system
|
|
healthcheck:
|
|
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
|
|
logging:
|
|
driver: journald
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
|
|
|
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
|
redis:
|
|
data:
|
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %} |