Piped-Backend/docker-healthcheck.sh
Kavin bfdf1a567e
Add healthcheck to Dockerfiles
Add healthcheck to hotspot.

Add healthcheck to graalvm.

Add the healthcheck script.
2023-08-23 21:01:15 +01:00

7 lines
152 B
Bash
Executable file

#!/usr/bin/env sh
# If PORT env var is set, use it, otherwise default to 8080
PORT=${PORT:-8080}
curl -f http://localhost:$PORT/healthcheck || exit 1