feat: replace python script with curl (#7192)

Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
This commit is contained in:
Michele Zoncheddu
2026-03-06 00:15:53 +01:00
committed by GitHub
parent 77081d0482
commit c91f8e23d7
3 changed files with 16 additions and 31 deletions

12
docker/healthcheck.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
PORT="${API_PORT:-9000}"
if [ -n "$TLS_CERTIFICATE_PATH" ] && [ -n "$TLS_PRIVATE_KEY_PATH" ]; then
PROTO="https"
else
PROTO="http"
fi
# -k: TLS certificate is likely not issued for 127.0.0.1, so don't verify
curl -fsk "${PROTO}://127.0.0.1:${PORT}/api/app/about" > /dev/null