Bootstrap

Docker 拉取镜像速度慢,容易失败?

1.问题

在国内,通过docker 拉取镜像非常慢,而且经常失败

2.解决办法

配置国内镜像源。

这里以Docker Desktop为例,首先,打开Docker Desktop,找到设置,类似⚙️这个图标,在左侧找到Docker Engine,在右侧配置中,填入如下信息:

{
  "builder": {
    "gc": {
      "defaultKeepStorage": "20GB",
      "enabled": true
    }
  },
  "experimental": false,
  "features": {
    "buildkit": true
  },
  "registry-mirrors": [
    "http://hub-mirror.c.163.com",
    "https://mirrors.tuna.tsinghua.edu.cn",
    "http://mirrors.sohu.com",
    "https://ustc-edu-cn.mirror.aliyuncs.com",
    "https://ccr.ccs.tencentyun.com",
    "https://docker.m.daocloud.io",
    "https://docker.awsl9527.cn"
  ]
}

然后点击Apply & restart即可。

3.接着再去通过docker 命令进行镜像的拉取就非常快了。

;