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

@ -59,6 +59,7 @@ nextcloud_trusted_proxies: "172.16.0.0/12"
# File locking and real-time push notifications # File locking and real-time push notifications
nextcloud_enable_notify_push: false nextcloud_enable_notify_push: false
nextcloud_notify_push_image: "icewind1991/notify_push:1.3.1"
# Non-default apps to install and enable # Non-default apps to install and enable
nextcloud_apps_to_install: nextcloud_apps_to_install:

View file

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