feat: make nextcloud_notify_push_image configurable
Signed-off-by: Bert-Jan Fikse <bert-jan@whatwedo.ch>
This commit is contained in:
parent
468ed34550
commit
e2fae25592
2 changed files with 4 additions and 3 deletions
|
|
@ -59,6 +59,7 @@ nextcloud_trusted_proxies: "172.16.0.0/12"
|
|||
|
||||
# File locking and real-time push notifications
|
||||
nextcloud_enable_notify_push: false
|
||||
nextcloud_notify_push_image: "icewind1991/notify_push:1.3.1"
|
||||
|
||||
# Non-default apps to install and enable
|
||||
nextcloud_apps_to_install:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue