Skip to content

Commit

Permalink
feat: increase HEALTHCHECK timeouts (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
danroc authored Nov 19, 2024
1 parent a7c0f7a commit 2a14a17
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ FROM alpine:3.20.3
EXPOSE 8080

HEALTHCHECK \
--interval=5s \
--timeout=5s \
--start-period=5s \
--interval=10s \
--timeout=10s \
--start-period=30s \
--start-interval=5s \
--retries=3 \
CMD wget -qO- http://localhost:8080/v1/health || exit 1

Expand Down

0 comments on commit 2a14a17

Please sign in to comment.