ubuntu下载docker
时间: 2023-12-01 07:03:07 浏览: 66
Ubuntu 安装 Docker
你可以按照以下步骤在 Ubuntu 中下载 Docker:
1. 更新 apt 包管理器:
```
sudo apt-get update
```
2. 安装依赖项,以允许 apt 通过 HTTPS 使用存储库:
```
sudo apt-get install apt-transport-https ca-certificates curl 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=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
```
5. 更新 apt 包索引:
```
sudo apt-get update
```
6. 安装 Docker:
```
sudo apt-get install docker-ce
```
安装完成后,你可以通过运行以下命令来验证 Docker 是否正确安装:
```
sudo docker run hello-world
```
阅读全文