Fix healthcheck with user-set base url

pull/137/head
Stefano Ortolani 2024-08-26 09:10:51 +01:00
parent 57ce60ab66
commit 9929290c89
1 changed files with 1 additions and 1 deletions

View File

@ -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