Minimal script to allow monit to check Docker containers
This commit is contained in:
parent
efce18a953
commit
371c56bfd0
1 changed files with 11 additions and 0 deletions
11
sysadmin/check_docker_service.sh
Executable file
11
sysadmin/check_docker_service.sh
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -o pipefail
|
||||||
|
set -o nounset
|
||||||
|
|
||||||
|
container="$1"
|
||||||
|
|
||||||
|
/usr/bin/docker inspect -f '{{.State.Status}}' $container | grep -q running
|
||||||
|
|
||||||
|
exit $?
|
Loading…
Add table
Reference in a new issue