mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-13 00:11:05 +01:00
Optimized docker-health-check
This commit is contained in:
parent
24fdaa2c70
commit
5d44c17493
@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
docker_ps_grep_unhealthy="$(docker ps | grep unhealthy)"
|
||||
docker_ps_grep_exited="$(docker ps -a | grep Exited)"
|
||||
docker_ps_grep_unhealthy="$(docker ps --filter health=unhealthy)"
|
||||
docker_ps_grep_exited="$(docker ps --filter status=exited)"
|
||||
exitcode=0
|
||||
if [ ! -z "$docker_ps_grep_unhealthy" ]
|
||||
then
|
||||
|
Loading…
Reference in New Issue
Block a user