linux系统docker安装
时间: 2023-11-08 10:05:08 浏览: 108
安装 Docker 在 Linux 系统上的步骤如下:
1. 安装依赖包
```shell
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
```
2. 添加 Docker GPG key
```shell
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
```
3. 添加 Docker 官方仓库地址
```shell
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
```
4. 安装 Docker CE
```shell
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
```
5. 启动 Docker 服务并设置开机自启动
```shell
sudo systemctl start docker
sudo systemctl enable docker
```
6. 验证 Docker 是否安装成功
```shell
docker version
```
阅读全文