写点什么

Docker 配置国内加速镜像

作者:信号量
  • 2022 年 3 月 18 日
  • 本文字数:369 字

    阅读完需:约 1 分钟

1. 安装 Docker

可以使用一键安装脚本:sudo curl -sSL https://get.daocloud.io/docker | sh

1.1 使用阿里云镜像安装

curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun

1.2 使用 AzureChina 安装

curl -fsSL https://get.docker.com | bash -s docker --mirror AzureChinaCloud

1.3 设置开机自启动

systemctl start docker

systemctl enable docker

2. 设置国内镜像加速

sudo mkdir -p /etc/dockersudo tee /etc/docker/daemon.json <<-'EOF'{  "registry-mirrors": [    "https://mirror.ccs.tencentyun.com",    "https://mirror.baidubce.com",    "https://dockerhub.azk8s.cn",    "https://dockerhub.azk8s.cn",    "http://hub-mirror.c.163.com",    "https://docker.mirrors.ustc.edu.cn"  ]}EOFsudo systemctl daemon-reloadsudo systemctl restart docker
复制代码


用户头像

信号量

关注

还未添加个人签名 2020.10.23 加入

举棋不定,兵进皇退

评论

发布
暂无评论
Docker 配置国内加速镜像_Docker_信号量_InfoQ写作平台