vaultwarden/overlay/usr/local/bin/healthcheck
Robert Kaussow 3a91b11be2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
feat: add container library (#54)
Co-authored-by: Robert Kaussow <xoxys@rknet.org>
Co-committed-by: Robert Kaussow <xoxys@rknet.org>
2021-10-10 15:26:00 +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