feat: make nextcloud_notify_push_image configurable

Signed-off-by: Bert-Jan Fikse <bert-jan@whatwedo.ch>
This commit is contained in:
Bert-Jan Fikse 2026-04-10 11:18:28 +02:00
parent 468ed34550
commit e2fae25592
Signed by: bert-jan
GPG key ID: C1E0AB516AC16D1A
2 changed files with 4 additions and 3 deletions

View file

@ -82,8 +82,8 @@ services:
POSTGRES_DB: {{ nextcloud_postgres_db }}
POSTGRES_USER: {{ nextcloud_postgres_user }}
POSTGRES_PASSWORD: {{ nextcloud_postgres_password }}
NEXTCLOUD_ADMIN_USER: {{ nextcloud_admin_user }}
NEXTCLOUD_ADMIN_PASSWORD: {{ nextcloud_admin_password }}
NEXTCLOUD_ADMIN_USER: {{ nextcloud_admin_user }}
NEXTCLOUD_ADMIN_PASSWORD: {{ nextcloud_admin_password }}
REDIS_HOST: redis
PHP_MEMORY_LIMIT: {{ nextcloud_memory_limit_mb }}M
PHP_UPLOAD_LIMIT: {{ nextcloud_upload_limit_mb }}M
@ -117,7 +117,7 @@ services:
{% if nextcloud_enable_notify_push %}
notify-push:
image: icewind1991/notify_push
image: {{ nextcloud_notify_push_image }}
restart: always
depends_on:
- redis