From f22c7b4f593c7b950c0ec33f01d960b2956aa98f Mon Sep 17 00:00:00 2001 From: Benjamin Brummer Date: Sun, 28 Sep 2025 10:39:15 +0200 Subject: [PATCH] Increas start-period as first run might take a long time --- debian/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/Dockerfile b/debian/Dockerfile index e1eb1e9..f95eb63 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -92,7 +92,7 @@ COPY --chmod=0755 scripts/init.sh /usr/local/bin/init.sh USER ${user} -HEALTHCHECK --start-period=10s CMD curl -f http://localhost/health +HEALTHCHECK --start-period=100s CMD curl -f http://localhost/health ENTRYPOINT ["/usr/local/bin/init.sh"]