52 lines
1.6 KiB
Plaintext
Raw Normal View History

2021-10-08 22:08:48 +02:00
services:
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/services/redis.yml.j2' %}
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
2021-10-08 22:08:48 +02:00
application:
2025-02-03 11:44:13 +01:00
image: "nextcloud:{{applications.nextcloud.version}}-fpm-alpine"
container_name: {{nextcloud_application_container_name}}
2021-10-08 22:08:48 +02:00
volumes:
- data:/var/www/html
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
2024-01-19 15:12:18 +01:00
{% 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
2025-02-10 22:42:08 +01:00
container_name: {{nextcloud_nginx_container_name}}
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:
- "{{docker_compose.directories.volumes}}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
2024-01-19 15:12:18 +01:00
{% 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
2025-02-03 11:44:13 +01:00
image: "nextcloud:{{applications.nextcloud.version}}-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
2024-01-19 15:12:18 +01:00
{% 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
2024-01-19 15:12:18 +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:
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/networks.yml.j2' %}