From 185f56ea72d9b42276ba7f6d64b69c00b9cc7d27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Assun=C3=A7=C3=A3o?= Date: Mon, 15 Jan 2024 18:41:07 -0300 Subject: [PATCH] Updated entrypoint script --- .docker/entrypoint.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.docker/entrypoint.sh b/.docker/entrypoint.sh index be32946..79fb925 100644 --- a/.docker/entrypoint.sh +++ b/.docker/entrypoint.sh @@ -19,8 +19,9 @@ run_setup_tasks() { # Check if vendor directory exists while [ ! -d "/var/www/html/vendor" ]; do - echo "WARNING: Directory /var/www/html/vendor does not yet exist." - sleep 120s + echo "WARNING: The directory /var/www/html/vendor does not exist yet. Please run the \"composer install\" command to ensure that all necessary dependencies are properly installed." + echo "Retrying in 180 seconds..." + sleep 180s done # Run setup tasks if in automatic mode