Merge pull request #589 from H3npi/H3npi-patch-1
Adds Healthcheck for default docker containerpull/604/head
commit
dda244edd8
@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
if [ -z "$ROCKET_TLS"]
|
||||
then
|
||||
curl --fail http://localhost:${ROCKET_PORT:-"80"}/alive || exit 1
|
||||
else
|
||||
curl --fail https://localhost:${ROCKET_PORT:-"80"}/alive || exit 1
|
||||
fi
|
Loading…
Reference in new issue