乌班图18.4安装docker
时间: 2023-11-20 12:56:25 浏览: 242
ubuntu 18.04 的docker基础镜像
4星 · 用户满意度95%
以下是在Ubuntu 18.04上安装Docker的步骤:
1.更新apt软件包索引并安装必要的软件包以允许apt通过HTTPS使用存储库:
```shell
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
```
2.添加Docker的官方GPG密钥:
```shell
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
```
3.添加Docker的APT存储库:
```shell
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
```
4.再次更新apt软件包索引并安装Docker CE:
```shell
sudo apt-get update
sudo apt-get install docker-ce
```
5.启动Docker服务:
```shell
sudo systemctl start docker.service
```
至此,Docker已经成功安装在Ubuntu 18.04上了。
阅读全文