mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Add healthcheck to Dockerfiles
Add healthcheck to hotspot. Add healthcheck to graalvm. Add the healthcheck script.
This commit is contained in:
parent
63891ae0e2
commit
bfdf1a567e
7 changed files with 68 additions and 4 deletions
6
docker-healthcheck.sh
Executable file
6
docker-healthcheck.sh
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue