From 2b0b477c7d5fd29dba5350a68c4e2ea39c34df1b Mon Sep 17 00:00:00 2001 From: paspo Date: Thu, 31 Jul 2025 09:39:42 +0200 Subject: [PATCH] faster healthcheck on start --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4b584a0..2be81fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,6 @@ ENV \ WEBDAV_PORT=8080 \ TZ=Etc/UTC -HEALTHCHECK --timeout=10s CMD curl --silent --fail -o /dev/null http://127.0.0.1:80/ +HEALTHCHECK --timeout=10s --start-period=5s CMD curl --silent --fail -o /dev/null http://127.0.0.1:80/ ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]