#!/bin/bash set -e if ! type curl >/dev/null 2>&1; then apt update -y && apt install curl -y && apt autoremove -y fi # 安装 docker curl -fsSL https://get.docker.com | bash cat <