0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

コードで学ぶAWS入門 15.6. Docker のインストール

Posted at

詰まったところ

コードで学ぶ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になっていた。
image.png

3.wsl --setdefault Ubuntu-24.04
は、Ubuntu-24.04をデフォルトのディストリビューションにセットしてくれる。

4.DockerをインストールしていたUbuntu-24.04がデフォルトになった
image.png

アスタリスク(*):現在のデフォルトディストリビューションを示すマークです。

もう一度実行

$ 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が正常に動いたことが確認できました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?