From 981cce6110cb63ebd837d93eb770ec7782c29a6b Mon Sep 17 00:00:00 2001 From: Lars Klemstein Date: Tue, 13 Jan 2026 22:27:47 +0100 Subject: [PATCH] new release; clean script --- docker-compose.yml | 3 ++- tools/cleanup_installation.sh | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 tools/cleanup_installation.sh diff --git a/docker-compose.yml b/docker-compose.yml index 716aa48..24dffcf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -59,7 +59,8 @@ services: nextcloud-fpm-v1: # image: nextcloud:32.0.1-fpm - image: nextcloud:32.0.2-fpm + # image: nextcloud:32.0.2-fpm + image: nextcloud:32.0.3-fpm container_name: nextcloud-fpm-v1 restart: unless-stopped environment: diff --git a/tools/cleanup_installation.sh b/tools/cleanup_installation.sh new file mode 100755 index 0000000..41b2fca --- /dev/null +++ b/tools/cleanup_installation.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -euo pipefail + +for action in maintenance:repair db:add-missing-indices db:add-missing-columns db:add-missing-primary-keys files:scan-app-data +do + ./occ $action +done