From dda4e55f9e51b31e9c1a816cdbc6143268f8c173 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Mon, 11 Jul 2022 12:10:52 +0200 Subject: [PATCH] Match Healthcheck with remote_call timeout --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7231620..359dcd6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,9 +23,9 @@ RUN python3 -m pip --no-cache-dir install --upgrade pip &&\ rm -rf great_ai HEALTHCHECK \ - --interval=10s \ - --timeout=60s \ - --start-period=30s \ + --interval=30s \ + --timeout=180s \ + --start-period=60s \ --retries=5 \ CMD [ "curl", "--fail", "http://localhost:6060/health" ]