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

61 lines
1.7 KiB
Plaintext
Raw Normal View History

version: '3'
2021-10-08 22:08:48 +02:00
services:
{% include 'templates/docker-service-redis.yml.j2' %}
{% include 'templates/docker-service-' + database_type + '.yml.j2' %}
2021-10-08 22:08:48 +02:00
application:
image: "nextcloud:{{version_nextcloud}}-fpm-alpine"
2024-01-14 12:19:00 +01:00
container_name: nextcloud-application
restart: {{docker_restart_policy}}
2021-10-08 22:08:48 +02:00
logging:
driver: journald
volumes:
- data:/var/www/html
environment:
2024-01-06 14:32:49 +01:00
MYSQL_DATABASE: "{{database_name}}"
MYSQL_USER: "{{database_username}}"
MYSQL_PASSWORD: "{{database_password}}"
MYSQL_HOST: {{database_host}}:3306
{% include 'templates/docker-container-depends-on-database-redis.yml.j2' %}
{% include 'templates/docker-container-networks.yml.j2' %}
2021-10-08 22:08:48 +02:00
web:
image: nginx:alpine
2024-01-14 12:19:00 +01:00
container_name: nextcloud-web
2021-10-08 22:08:48 +02:00
logging:
driver: journald
restart: {{docker_restart_policy}}
2021-10-08 22:08:48 +02:00
ports:
- "127.0.0.1:{{http_port}}:80"
volumes:
2023-04-26 12:45:49 +02:00
- "{{path_docker_volumes}}nextcloud/nginx.conf:/etc/nginx/nginx.conf:ro"
2021-10-08 22:08:48 +02:00
volumes_from:
- application
2024-01-06 11:09:30 +01:00
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/"]
interval: 1m
timeout: 10s
retries: 3
{% include 'templates/docker-container-networks.yml.j2' %}
2023-12-26 16:40:19 +01:00
2021-10-08 22:08:48 +02:00
cron:
2024-01-14 12:19:00 +01:00
container_name: nextcloud-cron
image: "nextcloud:{{version_nextcloud}}-fpm-alpine"
restart: {{docker_restart_policy}}
2021-10-08 22:08:48 +02:00
logging:
2021-11-11 14:25:19 +01:00
driver: journald
2021-10-08 22:08:48 +02:00
volumes:
- data:/var/www/html
entrypoint: /cron.sh
{% include 'templates/docker-container-depends-on-database-redis.yml.j2' %}
{% include 'templates/docker-container-networks.yml.j2' %}
2024-01-02 21:39:17 +01:00
{% include 'templates/docker-compose-volumes.yml.j2' %}
2021-10-08 22:08:48 +02:00
data:
2022-01-20 21:36:32 +01:00
redis:
{% include 'templates/docker-compose-networks.yml.j2' %}