Docker一键安装脚本
# 官方
# 使用官方源安装
curl -sSL https://get.docker.com | sh
# 使用阿里源安装
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
# 使用中国区 Azure 源安装
curl -fsSL https://get.docker.com | bash -s docker --mirror AzureChinaCloud
# 国内
# linuxmirrors
其它工具 - LinuxMirrors (opens new window)
内置镜像源切换
bash <(curl -sSL https://linuxmirrors.cn/docker.sh)
# 测了阿里云、腾讯云的源,都无效,最终用的 道客 DaoCloud 成功拉取
Note
如提示 bash: /dev/fd/63: No such file or directory
,需在 root 用户下执行。
# DaoCloud
注意
502 Bad Gateway
,似乎已经不行了
# 可能用到的命令
# 查看镜像源,如果找不到文件说明是官方源
cat /etc/docker/daemon.json
上次更新: 2024/11/09, 02:20:10