vaultwarden/overlay/usr/local/bin/healthcheck
Robert Kaussow 96f6a21b01
All checks were successful
continuous-integration/drone/push Build is passing
set back pipefail
2020-02-04 00:35:23 +01:00

11 lines
140 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