Compare commits

...

4 Commits
main ... main

Author SHA1 Message Date
3edb825090 Merge branch 'jeppebundsgaard-main'
Some checks failed
continuous-integration/drone/pr Build is failing
2026-05-06 11:12:51 +02:00
580e54f98b chore: update image tags 2026-05-05 08:23:26 +02:00
8412af548c Added info on maintenance window setting
Some checks failed
continuous-integration/drone/pr Build is failing
2026-05-05 06:17:59 +00:00
8e77c546dc Added info about system-settings
Some checks failed
continuous-integration/drone/pr Build is failing
2026-05-05 05:48:33 +00:00
5 changed files with 22 additions and 8 deletions

View File

@ -120,6 +120,20 @@ To disable dashboard app (since it is so corporate):
`abra app cmd <app-name> 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-name> app set_system_config <config> '<value>'`
For example, this command sets the default language for new users to Danish:
`abra app cmd <app-name> 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-name> 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

View File

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

View File

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

View File

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

View File

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