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

49 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-11-16 11:17:37 +01:00
version: '2'
services:
{% include 'templates/docker-{{ database_type }}-service.yml.j2' %}
{% include 'templates/docker-redis-service.yml.j2' %}
2022-11-16 11:17:37 +01:00
application:
image: zknt/pixelfed
2023-01-09 15:59:36 +01:00
restart: always
2022-11-16 11:17:37 +01:00
logging:
driver: journald
env_file:
- ./env
volumes:
- "application_data:/var/www/storage"
2023-12-10 16:24:43 +01:00
- "bootstrap:/var/www/bootstrap"
2022-11-16 11:17:37 +01:00
- "./env:/var/www/.env"
ports:
- "{{http_port}}:80"
{% include 'templates/docker-depends-on-central-database.yml.j2' %}
redis:
2022-11-16 11:17:37 +01:00
worker:
image: zknt/pixelfed
2023-01-09 15:59:36 +01:00
restart: always
2022-11-16 11:17:37 +01:00
logging:
driver: journald
env_file:
- ./env
volumes:
- "application_data:/var/www/storage"
2023-12-10 16:24:43 +01:00
- "bootstrap:/var/www/bootstrap"
2022-11-16 11:17:37 +01:00
- "./env:/var/www/.env"
entrypoint: /worker-entrypoint.sh
healthcheck:
test: php artisan horizon:status | grep running
interval: 60s
timeout: 5s
retries: 1
{% include 'templates/docker-depends-on-central-database.yml.j2' %}
redis:
application:
2023-12-26 16:40:19 +01:00
2022-11-16 11:17:37 +01:00
volumes:
{% include 'templates/docker-database-volume.yml.j2' %}
2023-12-26 16:40:19 +01:00
redis:
2023-12-10 16:24:43 +01:00
application_data:
bootstrap: