在Windows PC上搭建Linux的Docker环境(WSL2)

首先

由于想要轻松地进行命令确认等操作,在使用WSL2构建了Linux环境和Docker环境。
我打算把步骤等记录下来作为备忘录。

确认事情在开始之前

    • Windows10でWSL2を使用する場合、64bit版かつ下記バージョンが求められる

x64システム:バージョン1903以降、ビルド18362以上
ARM64システム:バージョン2004以降、ビルド19041以上

使用WSL2搭建Linux环境

准备安装Linux操作系统

コントロールパネル⇒プログラム⇒Windowsの機能の有効化または無効化から下記二つの機能を有効化

Linux用Windowsサブシステム(WSL)
仮想マシン プラットフォーム

安装Linux内核

Microsoftの公式ドキュメントから下記をダウンロード

x64マシン用WSL2 Linuxカーネル更新プログラムパッケージ

ダウンロードしたインストーラを起動しLinuxカーネルをインストール

WSL2的默认设置

    • 初期設定ではWSL1が設定されているため、WSL2をデフォルトで使用するように設定

 

    • コマンドプロンプトにて下記コマンド実行

 

    wsl –set-default-version 2

安装Linux发行版

    • Microsoft storeから任意のLinuxディストリビューションをインストール

 

    • ※今回はUbuntu22.04をインストール

 

    • インストール完了後、Ubuntuを起動し下記初期設定を実施

Enter new UNIX username:ユーザー名入力

New password:パスワード入力

Retype new password:パスワード再入力

以上の設定でUbuntuが利用可能となる

Docker環境構築

安装Docker

按照Docker官方文档的步骤安装适用于Linux环境的Docker。

    • Dockerのaptリポジトリ追加

 

    • $ sudo apt-get update

 

    • $ sudo apt-get install ca-certificates curl gnupg

 

    • $ sudo install -m 0755 -d /etc/apt/keyrings

 

    • $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg –dearmor -o

 

    • /etc/apt/keyrings/docker.gpg

 

    • $ sudo chmod a+r /etc/apt/keyrings/docker.gpg

 

    • $ echo \

 

    • “deb [arch=$(dpkg –print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \

 

    • $(. /etc/os-release && echo “$VERSION_CODENAME”) stable” | \

 

    • sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

 

    • $ sudo apt-get update

docker-ce等のインストール
$ sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Dockerサービス起動

    • dockerサービス起動

 

    $ sudo service docker start

Docker容器启动:若正常启动

    • docker run実行

hello-worldコンテナの起動を確認

$ sudo 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 imagesコマンドでpullされたイメージの確認が可能

その他dockerコマンドも使用可能となる

$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
hello-world latest 9c7a54a9a43c 7 months ago 13.3kB

如果Docker容器启动时出现错误:

    • docker run実行

hello-worldのコンテナを起動してみるがエラーとなる

$ sudo docker run hello-world
docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.
See ‘docker run –help’.

WSL2でDockerコマンド実行した際に発生するネットワーク関連エラーとのこと

下記コマンドにて設定修正・適用
⇒再度、docker runコマンドにてコンテナ起動を確認

$ sudo update-alternatives –set iptables /usr/sbin/iptables-legacy
$ sudo update-alternatives –set ip6tables /usr/sbin/ip6tables-legacy
$ sudo service docker restart

在以上的配置下,可以使用Docker。

额外内容:切换到systemd

由於預設情況下無法使用systemctl命令,因此需要切換到systemd。

    • Microsoft storeからWindows Subsystem for Linuxをインストール

 

    • ※Linux環境構築時に有効化した組み込みのLinux用Windowsサブシステム(WSL)では

 

    •  systemdがサポートされていないため改めてWSLをインストールする必要があるらしい

 

    • コマンドプロンプトにてWSLのバージョンを確認

WSLバージョン0.67.6以上でsystemd使えるため、問題なさそう

> wsl –version
WSL バージョン: 2.0.9.0
カーネル バージョン: 5.15.133.1-1
WSLg バージョン: 1.0.59
MSRDC バージョン: 1.2.4677
Direct3D バージョン: 1.611.1-81528511
DXCore バージョン: 10.0.25131.1002-220531-1700.rs-onecore-base2-hyp
Windows バージョン: 10.0.19045.3693

起動したUbuntu内にて下記内容のファイルを配置
$ sudo vi /etc/wsl.conf
$ sudo cat /etc/wsl.conf
[boot]
systemd=true

追加した設定を適用するため、コマンドプロンプトからWSLを停止
> wsl –shutdown

Ubuntuにてsystemctlコマンドが実行可能か確認

特に問題なくコマンド実行可能となった

$ systemctl status docker
● docker.service – Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
Active: active (running) since Sat 2023-12-09 04:51:47 JST; 1h 20min ago
TriggeredBy: ● docker.socket
Docs: https://docs.docker.com
Main PID: 1160 (dockerd)
Tasks: 12
Memory: 56.7M
CGroup: /system.slice/docker.service
└─1160 /usr/bin/dockerd -H fd:// — containerd=/run/containerd/containerd.sock
— 省略 —

总结

我成功建立了一个属于自己的Linux环境。我觉得拥有一个即使崩溃也无所谓的环境,选择就大大增加了。我觉得仅仅确认命令有些可惜,所以希望今后能继续尝试各种不同的东西。

请参阅

WindowsでWSL2を使って「完全なLinux」環境を作ろう!

https://learn.microsoft.com/ja-jp/windows/wsl/install-manual#step-4—download-the-linux-kernel-update-package

https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository

https://confrage.jp/error-cannot-connect-to-the-docker-daemon-at-unix-var-run-docker-sock-is-the-docker-daemon-running/

https://qiita.com/curacao/items/fb9adaf1c097b1acd6a8

广告
将在 10 秒后关闭
bannerAds