承接上篇安装docker时候,因为是win10家庭版,踩过一些坑,记录下:
一、前提条件需要Windows功能:Hyper-V。
打开控制面板 - 程序和功能 - 启用或关闭Windows功能,勾选Hyper-V,然后点击确定即可,如图:
点击确定后,启用完毕会提示重启系统,我们可以稍后再重启。
很遗憾我是家庭版...没有Hyper-V,难受,并不想换系统~
解决方案:家庭版添加Hyper-V
新建文件hyper-V.cmd将以下内容copy到里面:
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