mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
65 lines
1.9 KiB
Django/Jinja
65 lines
1.9 KiB
Django/Jinja
version: '3'
|
|
services:
|
|
|
|
{% include 'templates/docker-redis-service.yml.j2' %}
|
|
|
|
{% include 'templates/docker-{{ database_type }}-service.yml.j2' %}
|
|
|
|
web:
|
|
image: tootsuite/mastodon:{{version_mastodon}}
|
|
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
|
|
volumes:
|
|
- data:/mastodon/public/system
|
|
logging:
|
|
driver: journald
|
|
{% include 'templates/docker-networks-for-container.yml.j2' %}
|
|
|
|
streaming:
|
|
image: tootsuite/mastodon:{{version_mastodon}}
|
|
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
|
|
logging:
|
|
driver: journald
|
|
{% include 'templates/docker-networks-for-container.yml.j2' %}
|
|
|
|
sidekiq:
|
|
image: tootsuite/mastodon:{{version_mastodon}}
|
|
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
|
|
volumes:
|
|
- data:/mastodon/public/system
|
|
healthcheck:
|
|
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
|
|
logging:
|
|
driver: journald
|
|
{% include 'templates/docker-networks-for-container.yml.j2' %}
|
|
|
|
volumes:
|
|
{% include 'templates/docker-database-volume.yml.j2' %}
|
|
redis:
|
|
data:
|
|
|
|
{% include 'templates/docker-networks-for-role.yml.j2' %} |