一股脑的报错信息:

1.  报错"docker failed to initialize docker desktop is shutting down how can i fixed it [closed]"

解决,删除  C:\Users\xindong\AppData\Roaming\Docker 目录下的 settings.json, 然后重启Docker DeskTop

 

发现还是起不来:

docker初始化 docker初始化失败,无法部署wls_Docker

 

解决方案:https://docs.microsoft.com/zh-cn/windows/wsl/install-manual#step-4---download-the-linux-kernel-update-package

大概意思是我的机器 wls 的内核太老了,需要更新;

然后执行  

1, dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart

2, dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart

3, wsl --set-default-version 2

  

docker初始化 docker初始化失败,无法部署wls_docker_02