Windows 10 HomeにDocker Desktop for Windows インストール
5433 ワード
概要
Windows 10 Homeで、Docker Desktop for Windowsを利用するための手順を示す。
以下の内容を行う。
- Microsoftアカウントで「Windows Insider Program」への参加
- Windows Insider Program によるWindows最新バージョン取得
- WSL2の有効化
- WSL2 Linuxカーネルインストール
- Docker Desktop for Windows インストール
事前準備
※これを記述した2020/05/09時点では必要だが、Windows Updateで標準でインストールされるようになった場合は不要になると思われる。
- Microsoftアカウントを作成しておくこと。
- 作成したアカウントで、Windows Insider Programに参加しておくこと。
https://insider.windows.com/ja-jp/
手順
Windows Insider Programのインストール
- Windowsの「設定 > 更新とセキュリティ > Windows Insider Program」を開く。
- 「開始する」をクリックする。
- 画面が変わらず進まない場合
- MicrosoftアカウントでMicrosoft Insiderに登録した後、少し待つ必要があるかもしれない。
- すでに複数アカウント選択できるような状態の場合、別のアカウントを選択して切り替えて、再度戻したりすると進められる場合がある。
- Microsoft Insiderに登録したしたMicrosoftアカウントを指定する。
- 指示に従って進める。
- プレビュービルドを受け取る頻度は、「スロー(SLOW)」でよい。
- 「SLOW」の他にも「FAST」がありますが、違いを簡単に言うと「FAST」は開発者向けで、新機能や強化された機能を先行して使用でき、「SLOW」は一般向けで安定性を重視しているので(SLOW)が推奨です。好みに合わせて選択してください。
https://www.pasoble.jp/windows/10/insider-program-update.html より
- マシン再起動を求められるので、再起動する。
- Windowsの「設定 > 更新とセキュリティ > Windows Update」から更新プログラムをチェックし、「Windows 10、バージョン 2004」をインストールする。
※インストールが完了するまでかなり時間がかかる場合もある。
- マシンを再起動する。
- 更新プログラムが他にもあれば、インストールする。
WSL2 有効化
- 「Windowsの機能の有効化または無効化」のウィンドウを開く。
- 「Linux用Windowsサブシステム」にチェックを付け、「OK」をクリックする。
- マシンを再起動する。
WSL 2 Linux カーネルのインストール
- 以下にアクセスする。
https://docs.microsoft.com/ja-jp/windows/wsl/wsl2-kernel
- Linux カーネル更新プログラム パッケージをダウンロードし、インストールする。
「このリンク」からダウンロード可能。
Docker Desktop for Windows インストール
- 以下のサイトを開く。
https://hub.docker.com/editions/community/docker-ce-desktop-windows/
- 「Get Docker Desktop for Windows (Edge)」をクリックして、インストーラーをダウンロードする。
- インストーラーを実行して、Docker Desktop for Windowsをインストールする。
- Docker Desktop for Windows を起動する。
動作確認
- dockerのインストール状態を確認
> wsl -l -v
NAME STATE VERSION
* docker-desktop Running 2
docker-desktop-data Running 2
- dockerコマンド実行
> docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
0e03bdcc26d7: Pull complete
Digest: sha256:8e3114318a995a1ee497790535e7b88365222a21771ae7e53687ad76563e8e76
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
その他
- 画面が変わらず進まない場合
- MicrosoftアカウントでMicrosoft Insiderに登録した後、少し待つ必要があるかもしれない。
- すでに複数アカウント選択できるような状態の場合、別のアカウントを選択して切り替えて、再度戻したりすると進められる場合がある。
- プレビュービルドを受け取る頻度は、「スロー(SLOW)」でよい。
- 「SLOW」の他にも「FAST」がありますが、違いを簡単に言うと「FAST」は開発者向けで、新機能や強化された機能を先行して使用でき、「SLOW」は一般向けで安定性を重視しているので(SLOW)が推奨です。好みに合わせて選択してください。
https://www.pasoble.jp/windows/10/insider-program-update.html より
- 「SLOW」の他にも「FAST」がありますが、違いを簡単に言うと「FAST」は開発者向けで、新機能や強化された機能を先行して使用でき、「SLOW」は一般向けで安定性を重視しているので(SLOW)が推奨です。好みに合わせて選択してください。
※インストールが完了するまでかなり時間がかかる場合もある。
https://docs.microsoft.com/ja-jp/windows/wsl/wsl2-kernel
「このリンク」からダウンロード可能。
https://hub.docker.com/editions/community/docker-ce-desktop-windows/
> wsl -l -v
NAME STATE VERSION
* docker-desktop Running 2
docker-desktop-data Running 2
> docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
0e03bdcc26d7: Pull complete
Digest: sha256:8e3114318a995a1ee497790535e7b88365222a21771ae7e53687ad76563e8e76
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
もともとVirtualBoxを使っていて、再度使いたい場合は、
「Windowsの機能の有効かまたは無効化」で、以下の二つのチェックを外し、マシン再起動する。
- Linux用Windowsサブシステム
- 仮想マシン プラットフォーム
参考サイト
Author And Source
この問題について(Windows 10 HomeにDocker Desktop for Windows インストール), 我々は、より多くの情報をここで見つけました https://qiita.com/jin_yokoyama/items/9b08556eb8d00ea731e8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .