Windows 关闭hyper-v 和wsl 子系统

关闭 hyper-v 

#以管理员身份运行 powershell
bcdedit /set hypervisorlaunchtype off

 关闭 WSL (Windows Subsystem for Linux) 

#以管理员身份运行 powershell
Disable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform

#重启计算机

恢复使用 docker 或者 WSL

#以管理员身份运行 powershell
bcdedit /set hypervisorlaunchtype auto

你可能感兴趣的:(windows,docker)