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