From 586acf83dbb3d13c8bdd42cba261bf3063c29ef0 Mon Sep 17 00:00:00 2001 From: Marco Blessing Date: Thu, 20 Jan 2022 16:12:38 +0100 Subject: [PATCH] increase healtcheck timeout due to systemload (#9) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b280731..928506b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN npm install \ FROM nginx:1.21.5-alpine LABEL maintainer="marco.blessing@googlemail.com" -HEALTHCHECK --interval=15s --timeout=3s \ +HEALTHCHECK --interval=15s --timeout=5s \ CMD wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1 COPY --from=builder src/public /usr/share/nignx/html/ COPY nginx.conf /etc/nginx/nginx.conf