# 判断是否安装了 docker
if ! type docker >/dev/null 2>&1; then
    echo 'docker 未安装';
else
    echo 'docker 已安装';
fi