From be79ba14e1ffd8c38f5f90c6492578e6d8088ab0 Mon Sep 17 00:00:00 2001 From: Pablo Zmdl Date: Fri, 29 May 2026 15:20:44 +0200 Subject: [PATCH] Raise the memory limit for updater.phar Signed-off-by: Pablo Zmdl --- Containers/nextcloud/upgrade-latest-major.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/nextcloud/upgrade-latest-major.sh b/Containers/nextcloud/upgrade-latest-major.sh index f57c42a0..49bb648e 100644 --- a/Containers/nextcloud/upgrade-latest-major.sh +++ b/Containers/nextcloud/upgrade-latest-major.sh @@ -17,7 +17,7 @@ if [ -n "${INSTALLED_AT}" ]; then INSTALLED_AT="$(echo "${INSTALLED_AT}" | sed "s|[0-9][0-9]$|00|")" $PHP_CLI /var/www/html/occ config:app:set core installedat --value="${INSTALLED_AT}" fi -$PHP_CLI /var/www/html/updater/updater.phar --no-interaction --no-backup +$PHP_CLI -d memory_limit=2048M /var/www/html/updater/updater.phar --no-interaction --no-backup if ! $PHP_CLI /var/www/html/occ -V || $PHP_CLI /var/www/html/occ status | grep maintenance | grep -q 'true'; then echo "Installation of Nextcloud failed!" touch "$NEXTCLOUD_DATA_DIR/install.failed"