From 1c887e7fb61c6749d01d7ce73492ae2a27a01da3 Mon Sep 17 00:00:00 2001 From: Matthias Emde Date: Mon, 20 Oct 2025 20:03:49 +0200 Subject: [PATCH] Change installation command to app:install Signed-off-by: Matthias Emde --- 32/fpm/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/32/fpm/entrypoint.sh b/32/fpm/entrypoint.sh index e3b88f14..4351e9fe 100755 --- a/32/fpm/entrypoint.sh +++ b/32/fpm/entrypoint.sh @@ -240,7 +240,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP echo "Starting nextcloud installation" max_retries=10 try=0 - until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options" + until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ app:install $install_options" do echo "Retrying install..." try=$((try+1))