From 1e25372189c59feea6448681bd17254e8029fc78 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Fri, 10 May 2024 14:31:01 +0000 Subject: [PATCH] fix(health): docker healthcheck has 3 retries --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3057138a6..1015df481 100644 --- a/Dockerfile +++ b/Dockerfile @@ -212,7 +212,7 @@ ENV VPN_SERVICE_PROVIDER=pia \ PGID= ENTRYPOINT ["/gluetun-entrypoint"] EXPOSE 8000/tcp 8888/tcp 8388/tcp 8388/udp -HEALTHCHECK --interval=5s --timeout=5s --start-period=10s --retries=1 CMD /gluetun-entrypoint healthcheck +HEALTHCHECK --interval=5s --timeout=5s --start-period=10s --retries=3 CMD /gluetun-entrypoint healthcheck ARG TARGETPLATFORM RUN apk add --no-cache --update -l wget && \ apk add --no-cache --update -X "https://dl-cdn.alpinelinux.org/alpine/v3.17/main" openvpn\~2.5 && \