Add cron container to Nextcloud

This commit is contained in:
Sam A. 2022-11-22 17:40:55 +01:00
parent fe4b3ede81
commit e0c0163aae
Signed by untrusted user: samsapti
GPG Key ID: CBBBE7371E81C4EA
1 changed files with 16 additions and 1 deletions

View File

@ -32,6 +32,18 @@
networks:
- "nextcloud"
cron:
image: "nextcloud:25-apache"
restart: "unless-stopped"
entrypoint: "/cron.sh"
networks:
- "nextcloud"
volumes:
- "{{ nextcloud.volume_folder }}/app:/var/www/html"
depends_on:
- "postgres"
- "redis"
app:
image: "nextcloud:25-apache"
restart: "unless-stopped"
@ -50,6 +62,9 @@
POSTGRES_PASSWORD: "{{ postgres_passwords.nextcloud }}"
REDIS_HOST: "redis"
REDIS_HOST_PASSWORD: "{{ nextcloud_secrets.redis_password }}"
depends_on:
- "postgres"
- "redis"
networks:
nextcloud: