Commit da9773fd for guacamole.apache.org

commit da9773fd2ce07ac2290c74052ac2a4023a45802b
Author: jeloneal <48490942+jeloneal@users.noreply.github.com>
Date:   Mon Feb 24 10:51:44 2025 +0100

    GUACAMOLE-2035: Add start-up period to guacd health check in Dockerfile

    Added start-period to docker healthcheck. Should fix containers being stuck in `starting` state for a long time causing issues with certain docker compose setups

diff --git a/Dockerfile b/Dockerfile
index 057e6d89..9ed1b258 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -328,7 +328,7 @@ ENV LC_ALL=C.UTF-8
 ENV LD_LIBRARY_PATH=${PREFIX_DIR}/lib

 # Checks the operating status every 5 minutes with a timeout of 5 seconds
-HEALTHCHECK --interval=5m --timeout=5s CMD nc -z 127.0.0.1 4822 || exit 1
+HEALTHCHECK --interval=5m --timeout=5s --start-period=15s CMD nc -z 127.0.0.1 4822 || exit 1

 # Create a new user guacd
 ARG UID=1000