如何在亚马逊 Linux 2023 上安装 Docker?

huangapple go评论96阅读模式
英文:

How to install Docker on Amazon linux 2023?

问题

我正在尝试在亚马逊 Linux 2023 上使用 Docker CE 存储库安装 Docker 引擎,但没有成功。

我尝试在亚马逊 Linux 2 上使用 "amazon-linux-extras" 安装 Docker,但即使在亚马逊 Linux 2 上可用,但在 AL2023 上不再可用。

英文:

I am trying to install docker engine on amazon linux 2023 using the docker ce repo with no luck.

i tried to install Docker on amazon linux 2 using the "amazon-linux-extras" but its no longer available on AL2023 even though it was on AL2.

答案1

得分: 10

安装 Docker

```bash
yum install -y docker

对我来说运行正常。我正在使用 al2023-ami-2023.0.20230503.0-kernel-6.1-x86_64 版本。


<details>
<summary>英文:</summary>

Dsh.

Simple

yum install -y docker


worked fine for me. I&#39;m using `al2023-ami-2023.0.20230503.0-kernel-6.1-x86_64`

</details>



# 答案2
**得分**: 0

Amazon Linux 2023 使用 Fedora 作为上游源。所以,正如其他人建议的那样,可以使用 `yum install -y docker`。

但也可以使用 `dnf install -y docker`,因为 dnf 是下一代的 yum,实际上运行 yum 时会在后台运行 dnf。

<details>
<summary>英文:</summary>

Amazon Linux 2023 uses Fedora as the upstream. So as others suggested `yum install -y docker` can be used.

But also `dnf install -y docker` since dnf is the next-generation yum and running yum actually runs dnf in the background


</details>



huangapple
  • 本文由 发表于 2023年5月7日 20:58:22
  • 转载请务必保留本文链接:https://go.coder-hub.com/76194079.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定