From a018d6828e321792e7c3f17d2f03fd44ab6e447b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9drik?= Date: Thu, 9 Nov 2023 15:12:19 +0100 Subject: [PATCH] fix: silence health checks (#2398) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0b4174d09..cee5486b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ EXPOSE 5000 WORKDIR /kavita -HEALTHCHECK --interval=30s --timeout=15s --start-period=30s --retries=3 CMD curl --fail http://localhost:5000/api/health || exit 1 +HEALTHCHECK --interval=30s --timeout=15s --start-period=30s --retries=3 CMD curl -fsS http://localhost:5000/api/health || exit 1 ENV DOTNET_RUNNING_IN_CONTAINER=true