fix: change realtime healthcheck to cmdshell for podman compat (#41159)

This commit is contained in:
Andrey A.
2025-12-08 15:53:26 +01:00
committed by GitHub
parent 4b40c1f243
commit 43f40168c2

View File

@@ -208,15 +208,8 @@ services:
healthcheck:
test:
[
"CMD",
"curl",
"-sSfL",
"--head",
"-o",
"/dev/null",
"-H",
"Authorization: Bearer ${ANON_KEY}",
"http://localhost:4000/api/tenants/realtime-dev/health"
"CMD-SHELL",
"curl -sSfL --head -o /dev/null -H \"Authorization: Bearer ${ANON_KEY}\" http://localhost:4000/api/tenants/realtime-dev/health"
]
timeout: 5s
interval: 5s