- 卸载旧的docker版本
apt-get remove docker docker-engine docker.io containerd runc
- 更新软件列表
apt-get update
- .允许apt命令可以使用HTTPS访问Docker repository
apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
- 添加Docker官方的GPG key
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- 设置repository版本为stable
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- 更新软件列表
apt-get update
- 安装Docker CE和containerd
apt-get install docker-ce docker-ce-cli containerd.io
- 查看版本信息
docker --version
Ubuntu18.04安装最新版Docker
2022-12-01 08:52:23
浏览数 (1)