From a15136733c0230b4a8f7af00906cc5427b9041a2 Mon Sep 17 00:00:00 2001 From: ralf Date: Mon, 23 Sep 2024 17:44:01 +0200 Subject: [PATCH] Wait 5 instead of 3 seconds between installation attempts, as sometimes 10*3=30s is not enough for the DB to get ready on new installs --- doc/docker/fpm/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/docker/fpm/entrypoint.sh b/doc/docker/fpm/entrypoint.sh index a8b242f24d..63122e732c 100755 --- a/doc/docker/fpm/entrypoint.sh +++ b/doc/docker/fpm/entrypoint.sh @@ -89,9 +89,9 @@ do echo "Installing of EGroupware failed!" break fi - echo "Retrying EGroupware installation in 3 seconds ..." + echo "Retrying EGroupware installation in 5 seconds ..." try=$((try+1)) - sleep 3s + sleep 5s done 2>&1 | tee -a $LOG # as we can NOT exit from until (runs a subshell), we need to check and do it here