This commit is contained in:
Kevin Veen-Birkenbach 2023-12-24 19:19:07 +01:00
parent bc086d5236
commit e96a94bc2d

View File

@ -1,20 +1,30 @@
#!/bin/sh #!/bin/sh
docker_ps_grep_unhealthy="$(docker ps --filter health=unhealthy --format '{{.Names}}')" docker_ps_grep_unhealthy="$(docker ps --filter health=unhealthy --format '{{.Names}}')"
docker_ps_grep_exited="$(docker ps --filter status=exited --format '{{.Names}}')" docker_ps_grep_exited="$(docker ps --filter status=exited --format '{{.ID}}')"
exitcode=0 exitcode=0
if [ ! -z "$docker_ps_grep_unhealthy" ]
then if [ -n "$docker_ps_grep_unhealthy" ]; then
echo "Some docker containers are unhealthy: $docker_ps_grep_unhealthy" echo "Some docker containers are unhealthy: $docker_ps_grep_unhealthy"
exitcode=1 exitcode=1
fi fi
if [ ! -z "$docker_ps_grep_exited" ]
then if [ -n "$docker_ps_grep_exited" ]; then
echo "Some docker containers exited: $docker_ps_grep_exited" for container_id in $docker_ps_grep_exited
exitcode=2 do
container_exit_code="$(docker inspect "$container_id" --format='{{.State.ExitCode}}')"
container_name="$(docker inspect "$container_id" --format='{{.Name}}')"
container_name="${container_name#/}" # Entfernt das führende '/'
if [ "$container_exit_code" -ne "0" ]; then
echo "Container $container_name exited with code $container_exit_code"
exitcode=2
fi
done
fi fi
if [ "$exitcode" -ne "0" ]
then if [ "$exitcode" -ne "0" ]; then
exit $exitcode exit $exitcode
fi fi
echo "All docker containers are healthy." echo "All docker containers are healthy."
exit exit