From 8e77c546dcd972eb42a97bee89505e07ed95dd87 Mon Sep 17 00:00:00 2001 From: jeppebundsgaard Date: Tue, 5 May 2026 05:48:33 +0000 Subject: [PATCH 1/3] Added info about system-settings --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index b317d3e..0ea6e39 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,16 @@ To disable dashboard app (since it is so corporate): `abra app cmd app run_occ '"app:disable dashboard"'` +## Configuring system settings + +All settings on [this page](https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/index.html) can be configured using this command: + +`abra app cmd app set_system_config ''` + +For example, this command sets the default language for new users to Danish: + +`abra app cmd app set_system_config default_language 'da'` + ## Default user files - Follow [these docs](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/default_files_configuration.html) to set the default files list for each user in the Files app -- 2.49.0 From 8412af548cc6c99f3cb5c7741c6a87860ee22365 Mon Sep 17 00:00:00 2001 From: jeppebundsgaard Date: Tue, 5 May 2026 06:17:59 +0000 Subject: [PATCH 2/3] Added info on maintenance window setting --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 0ea6e39..388a966 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,10 @@ For example, this command sets the default language for new users to Danish: `abra app cmd app set_system_config default_language 'da'` +And, to avoid warnings about maintenance window, run this command ([read more here](https://docs.nextcloud.com/server/32/admin_manual/configuration_server/background_jobs_configuration.html)): + +`abra app cmd app set_system_config maintenance_window_start 1` + ## Default user files - Follow [these docs](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/default_files_configuration.html) to set the default files list for each user in the Files app -- 2.49.0 From 580e54f98bbbd9dcf1c114447249e0aef02372e0 Mon Sep 17 00:00:00 2001 From: Jeppe Bundsgaard Date: Tue, 5 May 2026 08:23:26 +0200 Subject: [PATCH 3/3] chore: update image tags --- compose.fulltextsearch.yml | 4 ++-- compose.postgres.yml | 2 +- compose.whiteboard.yml | 2 +- compose.yml | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/compose.fulltextsearch.yml b/compose.fulltextsearch.yml index 71cf4e4..926d64e 100644 --- a/compose.fulltextsearch.yml +++ b/compose.fulltextsearch.yml @@ -2,7 +2,7 @@ version: "3.8" services: elasticsearch: - image: "docker.elastic.co/elasticsearch/elasticsearch:8.17.2" + image: "docker.elastic.co/elasticsearch/elasticsearch:9.3.4" environment: - cluster.name=docker-cluster - bootstrap.memory_lock=true @@ -29,7 +29,7 @@ services: mode: 0600 searchindexer: - image: nextcloud:32.0.3-fpm + image: nextcloud:33.0.3-fpm volumes: - nextcloud:/var/www/html/ - nextapps:/var/www/html/custom_apps:cached diff --git a/compose.postgres.yml b/compose.postgres.yml index 6416aad..301c7ef 100644 --- a/compose.postgres.yml +++ b/compose.postgres.yml @@ -10,7 +10,7 @@ services: - NEXTCLOUD_UPDATE=1 db: - image: "postgres:13" + image: "postgres:18" command: -c "max_connections=${MAX_DB_CONNECTIONS:-100}" volumes: - "postgres:/var/lib/postgresql/data" diff --git a/compose.whiteboard.yml b/compose.whiteboard.yml index 600e2f6..3f770bb 100644 --- a/compose.whiteboard.yml +++ b/compose.whiteboard.yml @@ -6,7 +6,7 @@ services: - whiteboard_jwt whiteboard: - image: ghcr.io/nextcloud-releases/whiteboard:v1.5.0 + image: ghcr.io/nextcloud-releases/whiteboard:v1.5.7 deploy: labels: - traefik.enable=true diff --git a/compose.yml b/compose.yml index cf6c6fa..0d1fa94 100644 --- a/compose.yml +++ b/compose.yml @@ -1,7 +1,7 @@ version: "3.8" services: web: - image: nginx:1.29.4 + image: nginx:1.30.0 depends_on: - app configs: @@ -48,7 +48,7 @@ services: start_period: 5m app: - image: nextcloud:32.0.3-fpm + image: nextcloud:33.0.3-fpm depends_on: - db configs: @@ -109,7 +109,7 @@ services: start_period: 15m cron: - image: nextcloud:32.0.3-fpm + image: nextcloud:33.0.3-fpm volumes: - nextcloud:/var/www/html/ - nextapps:/var/www/html/custom_apps:cached @@ -125,7 +125,7 @@ services: cache: - image: redis:8.4.0-alpine + image: redis:8.6.2-alpine networks: - internal volumes: -- 2.49.0