背景:windows下装docker报错
报错是说:没有开启hyper-v的虚拟环境
具体报错截图
按照网络上的解决办法,第一步去管理服务里勾选hyper-v服务
但是我发现我的管理里没有这个服务,怎么办?
然后百度、csdn、博客园搜索,发现需要执行一段代码
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL
把如上的代码copy到记事本后,将.txt 后缀修改为.cmd,右键以管理员身份运行即可
然后上面那个图就出现Hyper-V了,勾选后发现还是不行,然后又csdn,发现需要执行以下指令
以管理员身份运行cmd或windows shell,执行以下命令:
Enable-WindowsOptionalFeature -Online -FeatureName $(“Microsoft-Hyper-V”, “Containers”) -All
然后启动docker就好了