From 05dbbcd7d21478c616f8b5eaadde6f66ccdbd7aa Mon Sep 17 00:00:00 2001 From: Sean Lee Date: Mon, 21 Dec 2020 14:03:39 +0800 Subject: [PATCH] Update docker-entrypoint.sh --- docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index bee572c2..30f38769 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -150,7 +150,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP echo "starting nextcloud installation" max_retries=10 try=0 - until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ] + until run_as "php /var/www/html/occ app:install $install_options" || [ "$try" -gt "$max_retries" ] do echo "retrying install..." try=$((try+1))