WSL2: 这是Ubuntu22.04/systemd启用下确定版的docker-cli安装步骤

只需要一种中文选项:按照此页面上的步骤可以做什么。

可以使用WSL2(启用了systemd)。
可以安装docker-cli。
可以运行容器。

让我们立即试一试

安装WSL2

需要符合以下条件:

1. 使用Windows10或者Windows11(22H2及以上版本,并已应用最新的更新)。
2. 没有组织内部代理服务器的访问限制(全公开版的步骤不包括在内)。
3. 虚拟化功能已启用(可以通过任务管理器确认)。

如果「虚拟化」没有启用,可以在UEFI设置中启用「VT-x」或「Intel虚拟化技术」。

image.png

启用WSL2

如果WSL2已经启用,则可省略。

# まだUbuntuをインストールしない。
wsl --install --no-distribution
wsl --update

安装WSL2(Ubuntu 22.04)。

#  Microsoft Store を使用するのではなく、オンライン ソースからインストールする
wsl --install --distribution Ubuntu-22.04 --web-download
wsl --set-default Ubuntu-22.04

与Docker安装无关的准备工作 yì)).

启用(任意)systemd

# (任意)systemdを有効化する
echo -e '[boot]\nsystemd=true' | sudo tee /etc/wsl.conf
可以使用以下命令来确认 /etc/wsl.conf 的内容。
cat /etc/wsl.conf

力的设定如下。

[boot]
systemd=true
最后,别忘了重新启动WSL。重新启动后,可以使用以下命令来检查pid。
ps -ae | grep systemd

想定出力は以下の通り。systemdのpidが1になっている

      1 ?        00:00:00 systemd
      2 ?        00:00:00 init-systemd(Ub
     40 ?        00:00:00 systemd-journal
     63 ?        00:00:00 systemd-udevd
    123 ?        00:00:00 systemd-resolve
    172 ?        00:00:00 systemd-logind
    463 ?        00:00:00 systemd

(任意)Ubuntuのアップグレードを済ませておく

# (任意)事前準備として、関係ないアップグレードは済ませておく
sudo apt-get update
sudo apt-get upgrade -y

Docker安装步骤

预先下载必要的软件

如果组织内存在代理访问限制,需要设置http_proxy环境变量。
若环境变量不存在,则无法连接apt仓库。
# 必要なソフトウェアの事前ダウンロード
sudo apt-get update
sudo apt-get install -y ca-certificates curl gnupg

添加用于Docker的apt软件源仓库。

以下所示手续,在Ubuntu20.04不起作用。需要Ubuntu22.04或更高版本。
# docker用のaptリポジトリを追加する
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
echo 'deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu jammy stable' | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

以下のコマンドでconfigの内容を確認できる

cat /etc/apt/keyrings/docker.asc
cat /etc/apt/sources.list.d/docker.list 

输出力的想法如下

-----BEGIN PGP PUBLIC KEY BLOCK-----

mQINBFit2ioBEADhWpZ8/wvZ6hUTiXOwQHXMAlaFHcPH9hAtr4F1y2+OYdbtMuth
(中略)
YT90qFF93M3v01BbxP+EIY2/9tiIPbrd
=0YYh
-----END PGP PUBLIC KEY BLOCK-----
deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu jammy stable

安装Docker

# dockerをインストール
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
可以通过以下命令检查Docker的运行状态
systemctl status docker

想要设定输出的如下

● docker.service - Docker Application Container Engine
     Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
     Active: active (running) since Thu 2023-10-19 22:53:11 JST; 30s ago
TriggeredBy: ● docker.socket
       Docs: https://docs.docker.com
   Main PID: 11405 (dockerd)
      Tasks: 17
     Memory: 33.5M
     CGroup: /system.slice/docker.service
             └─11405 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
(以下省略)

让我们运行Docker

尝试运行“你好,世界”。

可以使用以下命令执行Docker容器:

sudo docker pull docker.io/library/hello-world
sudo docker run docker.io/library/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/
如果组织内有使用代理限制访问,则需要对systemd和docker进行单独设置。
如果未进行设置更改,则无法连接到docker.io(dockerhub),因此无法进行docker pull。

请提供相关参考资料。

微软官方指南:WSL2安装步骤。

 

Docker官方文档:Docker的安装方法

 

gpg 可使用 ASCII Armor 格式。

 

广告
将在 10 秒后关闭
bannerAds