From 3e39ef1705c79819077c6e60e8e2d5915e39520a Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Wed, 1 Nov 2023 21:18:43 +0100 Subject: [PATCH] Use a greater healthcheck timer --- back/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/Dockerfile b/back/Dockerfile index a0a6cfd3..bfdc6e53 100644 --- a/back/Dockerfile +++ b/back/Dockerfile @@ -25,5 +25,5 @@ COPY --from=builder /app /app WORKDIR /kyoo EXPOSE 5000 -HEALTHCHECK --interval=5s CMD curl --fail http://localhost:5000/health || exit +HEALTHCHECK --interval=30s CMD curl --fail http://localhost:5000/health || exit CMD /app/Kyoo.Host