fix: increase HEALTHCHECK timeout window

This commit is contained in:
mudler 2023-05-30 11:58:43 +02:00
parent c088b18c4f
commit 071ef60727
2 changed files with 2 additions and 2 deletions

View file

@ -42,7 +42,7 @@ COPY . .
RUN make build
# Define the health check command
HEALTHCHECK --interval=30s --timeout=360s --retries=10 \
HEALTHCHECK --interval=1m --timeout=10m --retries=10 \
CMD curl -f $HEALTHCHECK_ENDPOINT || exit 1
EXPOSE 8080