vaultwarden/overlay/usr/local/bin/healthcheck
Robert Kaussow d33311a25c
All checks were successful
continuous-integration/drone/pr Build is passing
feat: add container library
2021-10-09 22:21:46 +02:00

11 lines
157 B
Bash
Executable File

#!/usr/bin/env sh
# shellcheck disable=SC3040
set -eo pipefail
URL=http://127.0.0.1:8080/alive
! wget --quiet --tries=1 --spider ${URL} || exit 1
exit 0