vaultwarden/overlay/usr/local/bin/healthcheck
Robert Kaussow 591857e2ba
All checks were successful
continuous-integration/drone/push Build is passing
add simple wait-for script
2020-02-01 18:34:59 +01:00

10 lines
139 B
Bash
Executable File

#!/usr/bin/env sh
set -eo pipefail
URL=http://127.0.0.1:8080/alive
wget --quiet --tries=1 --spider ${URL}
[ $? -ne 0 ] && exit 1
exit 0