Dockerfileのダウンロードからコンテナ作成までの流れ
- Docker Desktopのインストール
- Docker Desktopの起動
- Dockerfileのダウンロード
- Docker Imageの作成
- Docker Containerの作成
WSL上のUbuntuでdockerが使用できない
- WSL上のUbuntuで
docker build
を実行した時、下記のようなエラーが排出される。
The command 'docker' could not be found in this WSL 1 distro.
We recommend to convert this distro to WSL 2 and activate
the WSL integration in Docker Desktop settings.
- このときは、記載の通りWSLのバージョンを1から2に上げる。
$ wsl --set-version Ubuntu 2
- その後、さらに下記のようなエラーが排出される。
The command 'docker' could not be found in this WSL 2 distro.
We recommend to activate the WSL integration in Docker Desktop settings.
See https://docs.docker.com/docker-for-windows/wsl/ for details.
-
Docker Desktopを起動し、Settings > Resources > WSL INTEGRATIONでUbuntu(この画像ではUbuntu-18.04)をONにする。
-
右下のApply & Restartを押下する。