Windows for docker 设置加速

AI摘要

在Docker Engine配置中添加阿里云镜像源https://telvr77k.mirror.aliyuncs.com,可加速镜像下载。

打开docker设置,Docker Engine 输入下面的配置,添加

"registry-mirrors": [
    "https://telvr77k.mirror.aliyuncs.com"
  ]

完整配置

{
  "builder": {
    "gc": {
      "defaultKeepStorage": "20GB",
      "enabled": true
    }
  },
  "experimental": false,
  "features": {
    "buildkit": true
  },
  "registry-mirrors": [
    "https://telvr77k.mirror.aliyuncs.com"
  ]
}

点赞 0