From 7766c74eebd753edc23e777bc0878715764bec65 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 28 Oct 2023 08:57:53 +0100 Subject: [PATCH] feat: change healthcheck start-period to 5 mins --- Dockerfile.ubuntu-1804 | 2 +- Dockerfile.ubuntu-2004 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.ubuntu-1804 b/Dockerfile.ubuntu-1804 index 1006ebd..49372ab 100644 --- a/Dockerfile.ubuntu-1804 +++ b/Dockerfile.ubuntu-1804 @@ -103,7 +103,7 @@ RUN echo "**** Add linuxgsm user ****" \ && chmod 0440 /etc/sudoers.d/$USER \ && chown $USER:$USER /data -HEALTHCHECK --interval=1m --timeout=1m --start-period=2m --retries=1 CMD /app/entrypoint-healthcheck.sh || exit 1 +HEALTHCHECK --interval=1m --timeout=1m --start-period=5m --retries=1 CMD /app/entrypoint-healthcheck.sh || exit 1 ## Download linuxgsm.sh RUN echo "**** Download linuxgsm.sh ****" \ diff --git a/Dockerfile.ubuntu-2004 b/Dockerfile.ubuntu-2004 index 8719167..cca5740 100644 --- a/Dockerfile.ubuntu-2004 +++ b/Dockerfile.ubuntu-2004 @@ -103,7 +103,7 @@ RUN echo "**** Add linuxgsm user ****" \ && chmod 0440 /etc/sudoers.d/$USER \ && chown $USER:$USER /data -HEALTHCHECK --interval=1m --timeout=1m --start-period=2m --retries=1 CMD /app/entrypoint-healthcheck.sh || exit 1 +HEALTHCHECK --interval=1m --timeout=1m --start-period=5m --retries=1 CMD /app/entrypoint-healthcheck.sh || exit 1 ## Download linuxgsm.sh RUN echo "**** Download linuxgsm.sh ****" \