From 68b6c3b76a455556be9de96d4669a29a3b35582b Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 29 Nov 2023 07:52:14 +0000 Subject: [PATCH] Increased the healthcheck interval to 300s to better align with increased timeout --- Dockerfile | 2 +- Dockerfile.refresh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ac5b999..917fd20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -101,6 +101,6 @@ COPY var-lib.tar.xz /usr/lib/var-lib.tar.xz COPY scripts/* /scripts/ # Healthcheck needs be an on image script that will know what service is running and check it. # Current image function stored in /usr/local/etc/running-as -HEALTHCHECK --interval=120s --start-period=300s --timeout=120s \ +HEALTHCHECK --interval=300s --start-period=300s --timeout=120s \ CMD /scripts/healthcheck.sh || exit 1 ENTRYPOINT [ "/scripts/start.sh" ] diff --git a/Dockerfile.refresh b/Dockerfile.refresh index 8a5dfee..038a2eb 100644 --- a/Dockerfile.refresh +++ b/Dockerfile.refresh @@ -15,6 +15,6 @@ COPY var-lib.tar.xz /usr/lib/var-lib.tar.xz COPY scripts/* /scripts/ # Healthcheck needs be an on image script that will know what service is running and check it. # Current image function stored in /usr/local/etc/running-as -HEALTHCHECK --interval=120s --start-period=300s --timeout=120s \ +HEALTHCHECK --interval=300s --start-period=300s --timeout=120s \ CMD /scripts/healthcheck.sh || exit 1 ENTRYPOINT [ "/scripts/start.sh" ]