Docker Desktop 相关

一. Docker Desktop 限制WSL2内存、cup占用过高

1.创建配置文件

1). 在用户目录(比如:C:\Users\Administrator下建立一个新文件,叫做.wslconfig

2). 修改文件内容为:

[wsl2]
processors=4
memory=8GB
swap=8GB
localhostForwarding=true

processors:最大核数,配置为电脑最大核数的一半
memory:最大内存数,配置为电脑最大内存的一半
swap:和memory一样
  1. 重启wsl2
wsl --shutdown
  1. 重启Docker Desktop

二. Docker Desktop 设置镜像加速

  1. 进入配置页面

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

发表评论