詰まったところ
コードで学ぶAWS入門https://tomomano.github.io/learn-aws-by-coding/#sec:install_docker
で15.6. Docker の インストールの最後に、設定が正しいか確認するため下記のコマンドをうつ。
$ docker run hello-world
The command 'docker' could not be found in this WSL 2 distro.
We recommend to activate the WSL integration in Docker Desktop settings.
For details about using Docker Desktop with WSL 2, visit:
https://docs.docker.com/go/wsl2/
このWSL 2ディストロでは、'docker'コマンドが見つかりません。
Docker Desktopの設定でWSL統合を有効にすることをお勧めします。
Docker DesktopとWSL 2の使い方の詳細については、こちらをご覧ください:
https://docs.docker.com/go/wsl2/
このように、ダウンロードしたはずのDockerが動かない。
Dockerが動かなかった原因説明
1.Dockerをインストールしたのは、Ubuntu-24.04
であり、Ubuntu
ではない。
2.WSLの起動時のデフォルトのディストリビューションがUbuntu
になっていた。
3.wsl --setdefault Ubuntu-24.04
は、Ubuntu-24.04
をデフォルトのディストリビューションにセットしてくれる。
4.DockerをインストールしていたUbuntu-24.04
がデフォルトになった
※アスタリスク(*):現在のデフォルトディストリビューションを示すマークです。
もう一度実行
$ docker run hello-world
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/
Dockerが正常に動いたことが確認できました。