Skip to content

Commit 9929290

Browse files
committed
Fix healthcheck with user-set base url
1 parent 57ce60a commit 9929290

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ services:
6767
db:
6868
condition: service_healthy
6969
healthcheck:
70-
test: curl -ks https://localhost/users/heartbeat > /dev/null || exit 1
70+
test: curl -ks ${BASE_URL:-https://localhost}/users/heartbeat > /dev/null || exit 1
7171
interval: 2s
7272
timeout: 1s
7373
retries: 3

0 commit comments

Comments
 (0)