自动判断地区 安装Dokcer
china=$(curl -s https://262235.xyz/ip/$(curl -s https://262235.xyz/ip/) | grep 中国)
if [[ ! -z "${china}" ]]; then
echo $china
# 中国使用阿里云镜像
wget get.docker.com -O get.docker.sh
bash get.docker.sh --mirror Aliyun
else
# Docker 一键安装命令
curl -fsSLo- get.docker.com | /bin/sh
fi
WEBAPI说明:
一键DD脚本网络安装Debian,可以类似这样参数
bash auto.sh -d 11 -v 64 -a -p 密码 \
--mirror 'https://mirrors.ustc.edu.cn/debian/'
passwd=$(date | md5sum | head -c 6)
echo -e "随机生成密码: \033[41;37m ${passwd} \033[0m 现在可修改; "
read -p "请输入你要的密码(按回车不修改): " -t 30 new
china=$(curl -s https://262235.xyz/ip/$(curl -s https://262235.xyz/ip/) | grep 中国)
if [[ ! -z "${china}" ]]; then
wget https://262235.xyz/auto.sh
bash auto.sh -d 11 -v 64 -a -p $passwd \
--mirror 'https://mirrors.ustc.edu.cn/debian/'
else
wget git.io/auto.sh
bash auto.sh -d 11 -v 64 -a -p $passwd
fi
文章评论