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

View file

@ -32,6 +32,18 @@
networks: networks:
- "nextcloud" - "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: app:
image: "nextcloud:25-apache" image: "nextcloud:25-apache"
restart: "unless-stopped" restart: "unless-stopped"
@ -50,6 +62,9 @@
POSTGRES_PASSWORD: "{{ postgres_passwords.nextcloud }}" POSTGRES_PASSWORD: "{{ postgres_passwords.nextcloud }}"
REDIS_HOST: "redis" REDIS_HOST: "redis"
REDIS_HOST_PASSWORD: "{{ nextcloud_secrets.redis_password }}" REDIS_HOST_PASSWORD: "{{ nextcloud_secrets.redis_password }}"
depends_on:
- "postgres"
- "redis"
networks: networks:
nextcloud: nextcloud: