From 8e24b06d06f2709814816ef6a1f86783cfbed919 Mon Sep 17 00:00:00 2001 From: szaimen <42591237+szaimen@users.noreply.github.com> Date: Fri, 20 Sep 2024 12:09:05 +0000 Subject: [PATCH] Yaml updates Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- manual-install/latest.yml | 27 +++++++++++++++++++++++++++ manual-install/sample.conf | 2 ++ 2 files changed, 29 insertions(+) diff --git a/manual-install/latest.yml b/manual-install/latest.yml index f92f0288..e5d876ca 100644 --- a/manual-install/latest.yml +++ b/manual-install/latest.yml @@ -16,6 +16,9 @@ services: nextcloud-aio-notify-push: condition: service_started required: false + nextcloud-aio-whiteboard: + condition: service_started + required: false image: nextcloud/aio-apache:latest init: true ports: @@ -33,6 +36,7 @@ services: - APACHE_MAX_SIZE=${APACHE_MAX_SIZE} - APACHE_MAX_TIME=${NEXTCLOUD_MAX_TIME} - NOTIFY_PUSH_HOST=nextcloud-aio-notify-push + - WHITEBOARD_HOST=nextcloud-aio-whiteboard volumes: - nextcloud_aio_nextcloud:/var/www/html:ro - nextcloud_aio_apache:/mnt/data:rw @@ -152,6 +156,8 @@ services: - REMOVE_DISABLED_APPS=${REMOVE_DISABLED_APPS} - APACHE_PORT=${APACHE_PORT} - IMAGINARY_SECRET=${IMAGINARY_SECRET} + - WHITEBOARD_SECRET=${WHITEBOARD_SECRET} + - WHITEBOARD_ENABLED=${WHITEBOARD_ENABLED} stop_grace_period: 600s restart: unless-stopped networks: @@ -369,6 +375,27 @@ services: cap_drop: - NET_RAW + nextcloud-aio-whiteboard: + image: nextcloud/aio-whiteboard:latest + init: true + expose: + - "3002" + environment: + - TZ=${TIMEZONE} + - NEXTCLOUD_URL=https://${NC_DOMAIN} + - JWT_SECRET_KEY=${WHITEBOARD_SECRET} + - STORAGE_STRATEGY=redis + - REDIS_HOST=nextcloud-aio-redis + - REDIS_HOST_PASSWORD=${REDIS_PASSWORD} + restart: unless-stopped + profiles: + - whiteboard + read_only: true + networks: + - nextcloud-aio + cap_drop: + - NET_RAW + volumes: nextcloud_aio_apache: name: nextcloud_aio_apache diff --git a/manual-install/sample.conf b/manual-install/sample.conf index 1f4e6b48..e75f5b1e 100644 --- a/manual-install/sample.conf +++ b/manual-install/sample.conf @@ -10,6 +10,7 @@ SIGNALING_SECRET= # TODO! This needs to be a unique and good password! TALK_INTERNAL_SECRET= # TODO! This needs to be a unique and good password! TIMEZONE=Europe/Berlin # TODO! This is the timezone that your containers will use. TURN_SECRET= # TODO! This needs to be a unique and good password! +WHITEBOARD_SECRET= # TODO! This needs to be a unique and good password! CLAMAV_ENABLED="no" # Setting this to "yes" (with quotes) enables the option in Nextcloud automatically. COLLABORA_ENABLED="no" # Setting this to "yes" (with quotes) enables the option in Nextcloud automatically. @@ -18,6 +19,7 @@ IMAGINARY_ENABLED="no" # Setting this to "yes" (with quotes) enables th ONLYOFFICE_ENABLED="no" # Setting this to "yes" (with quotes) enables the option in Nextcloud automatically. TALK_ENABLED="no" # Setting this to "yes" (with quotes) enables the option in Nextcloud automatically. TALK_RECORDING_ENABLED="no" # Setting this to "yes" (with quotes) enables the option in Nextcloud automatically. +WHITEBOARD_ENABLED="no" # Setting this to "yes" (with quotes) enables the option in Nextcloud automatically. APACHE_IP_BINDING=0.0.0.0 # This can be changed to e.g. 127.0.0.1 if you want to run AIO behind a web server or reverse proxy (like Apache, Nginx, Caddy, Cloudflare Tunnel and else) and if that is running on the same host and using localhost to connect APACHE_MAX_SIZE=10737418240 # This needs to be an integer and in sync with NEXTCLOUD_UPLOAD_LIMIT