install.sh - check docker is running

This commit is contained in:
LouisLam
2021-08-19 12:15:07 +08:00
parent bb0af35d47
commit c9aa110f6c
2 changed files with 12 additions and 0 deletions

View File

@@ -173,6 +173,11 @@ else
if [ "$check" == "" ]; then
"echo" "-e" "Error: docker is not found!"
exit 1
fi
check=$(docker info)
if [ "$check" == *Is the docker daemon running* ]; then
"echo" "-e" "Error: docker is not running!"
exit 1
fi
if [ "$3" != "" ]; then
port="$3"