Skip to content

Commit

Permalink
Fix healthcheck with user-set base url
Browse files Browse the repository at this point in the history
  • Loading branch information
ostefano committed Aug 26, 2024
1 parent 57ce60a commit 9929290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
db:
condition: service_healthy
healthcheck:
test: curl -ks https://localhost/users/heartbeat > /dev/null || exit 1
test: curl -ks ${BASE_URL:-https://localhost}/users/heartbeat > /dev/null || exit 1
interval: 2s
timeout: 1s
retries: 3
Expand Down

0 comments on commit 9929290

Please sign in to comment.