ubuntu20.04,arm64安装docker
时间: 2023-07-06 17:28:53 浏览: 149
下面是在 Ubuntu 20.04 ARM64 上安装 Docker 的步骤:
1. 更新本地软件包缓存:
```
sudo apt-get update
```
2. 安装必要的软件包,以允许 apt 通过 HTTPS 使用存储库:
```
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
```
3. 添加 Docker 的官方 GPG 密钥:
```
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
```
4. 添加 Docker 的官方 APT 存储库:
```
sudo add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
```
5. 更新软件包缓存并安装 Docker:
```
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
```
6. 确认 Docker 是否安装成功:
```
sudo docker run hello-world
```
如果一切顺利,您应该能够看到 Docker 运行 hello-world 容器并输出相关信息。
阅读全文