We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95c4929 commit 75e1b80Copy full SHA for 75e1b80
docker-entrypoint.sh
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225
echo "Starting nextcloud installation"
226
max_retries=10
227
try=0
228
- until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
+ until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229
do
230
echo "Retrying install..."
231
try=$((try+1))
0 commit comments