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

50 lines
1010 B
Plaintext
Raw Normal View History

2022-11-16 11:17:37 +01:00
version: '2'
services:
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"
depends_on:
- database
- redis
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
depends_on:
- database
- redis
- application
2022-11-16 11:17:37 +01:00
healthcheck:
test: php artisan horizon:status | grep running
interval: 60s
timeout: 5s
retries: 1
{% include 'templates/docker-mariadb-service.yml.j2' %}
2023-12-26 16:40:19 +01:00
{% include 'templates/docker-redis-service.yml.j2' %}
2022-11-16 11:17:37 +01:00
volumes:
database:
2023-12-26 16:40:19 +01:00
redis:
2023-12-10 16:24:43 +01:00
application_data:
bootstrap: