Windows10 ホームエディション、Docker をインストールする

1. Dockerをダウンロードしてインストールします

初心者向けのチュートリアルを参照してください: https://www.runoob.com/docker/windows-docker-install.html

1. https://www.docker.com/get-startedにアクセスします。

2.

3.

2.Hyper-Vをオンにする

1. 次の内容を含む新しい hyperv.cmd ファイルを作成します。

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. 管理者としてファイルを実行しますhyperv.cmd

注: システムから再起動を求められた場合は、再起動してください。

3. Win10 Professional Edition のふりをする

管理者として cmd を開きます。
次のコマンドを実行します。

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

参考: Win10 Home Edition は Windows 用 Docker をインストールします

おすすめ

転載: blog.csdn.net/weixin_40455437/article/details/107969574