windows10 home edition, install docker

1. Download and install docker

Refer to the rookie tutorial: https://www.runoob.com/docker/windows-docker-install.html

1. Visit https://www.docker.com/get-started

2.

3.

2. Turn on Hyper-V

1. Create a new hyperv.cmd file with the following content

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

2. Execute the file as administrator hyperv.cmd.

Note: If the system asks you to reboot, reboot.

3. Pretend to be Win10 Professional Edition

Open cmd as administrator.
Execute the following command:

REG ADD "HKEY_LOCAL_MACHINE\software\Microsoft\Windows NT\CurrentVersion" /v EditionId /T REG_EXPAND_SZ /d Professional /F

Reference: Win10 Home Edition installs Docker for Windows

Guess you like

Origin blog.csdn.net/weixin_40455437/article/details/107969574