Introduction

Docker Desktop 無しで Windows 上で docker を使う。
個人利用なら良いが、企業内で Docker Desktop はライセンスの都合で無償利用は無理。

Windows 上のシェルからは直接使えないが、 WSL 内で docker を呼べるようにする。

How to do?

1. WSL のインストール

コマンドプロンプトを管理者権限付きで起動。

1
2
3
4
> dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
> dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart

wsl --install

再起動後、実際に WSL をインストール。

1
> wsl --install

2. WSL の設定

インストールされた wsl を起動するとユーザの作成。

1
2
3
4
5
6
7
8
Installing, this may take a few minutes...
Please create a default UNIX user account. The username does not need to match your Windows username.
For more information visit: https://aka.ms/wslusers
Enter new UNIX username: xxxxx
New password:
Retype new password:
passwd: password updated successfully
Installation successful!

3. docker のインストール

1
2
3
4
5
$ sudo apt update && sudo apt upgrade && sudo apt -y install apt-transport-https ca-certificates curl gnupg lsb-release
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
$ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
$ sudo apt update && sudo apt -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin docker docker-compose

インストールされたかどうかの確認

1
2
3
4
$ docker --version
Docker version 27.1.2, build d01f264
$ docker-compose --version
docker-compose version 1.29.2, build unknown

4. sudo 無しで docker を使えるようにする

無くてもいいけど、面倒なので。

1
2
3
$ sudo groupadd docker && sudo usermod -aG docker $USER
$ newgrp docker
$ sudo service docker restart

デーモンが再起動されて、sudo 無しで docker が起動するようになる

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$ 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/