Skip to content

Commit

Permalink
fix: update the health check to use the correct endpoint
Browse files Browse the repository at this point in the history
Also increase the retries to 3, and bump to latest version
  • Loading branch information
bjarneo committed Apr 17, 2024
1 parent e1aef84 commit 7433101
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
hemmelig:
image: hemmeligapp/hemmelig:v5.19.4 # https://github.com/HemmeligOrg/Hemmelig.app/tags
image: hemmeligapp/hemmelig:v5.19.16 # https://github.com/HemmeligOrg/Hemmelig.app/tags
hostname: hemmelig
init: true
volumes:
Expand All @@ -22,6 +22,6 @@ services:
restart: always
stop_grace_period: 1m
healthcheck:
test: 'wget -O /dev/null localhost:3000 || exit 1'
test: 'wget -O /dev/null localhost:3000/api/healthz || exit 1'
timeout: 5s
retries: 1
retries: 3

0 comments on commit 7433101

Please sign in to comment.