nextcloud-cronjob/scripts/healthcheck.sh

10 lines
277 B
Bash
Executable File

#!/usr/bin/env bash
set -x
# Make sure cron daemon is still running
# shellcheck disable=SC2009
ps -o comm | grep crond || exit 1
# Make sure the target container is still running/available
docker inspect -f '{{.State.Running}}' "$(/find-container.sh)" | grep true || exit 1