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

@ -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