vaultwarden/overlay/usr/local/bin/healthcheck.sh
Robert Kaussow c825bc5530
All checks were successful
continuous-integration/drone/push Build is passing
fix healthcheck.sh permissions
2020-01-18 14:26:58 +01:00

10 lines
137 B
Bash
Executable File

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