Ubuntu安装指定版本的docker

1、删除docker相关组件

sudo apt-get autoremove docker docker-ce docker-engine  docker.io  containerd runc

2、更新apt-get

sudo apt-get update

3、安装 apt 依赖包,用于通过HTTPS来获取仓库

sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

4、添加 Docker 的官方 GPG 密钥

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

5、设置稳定版仓库(添加到/etc/apt/sources.list中)

sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

6、更新apt-get

sudo apt-get update

7、查询docker-ce版本

sudo apt-cache policy docker-ce

Ubuntu安装指定版本的docker_第1张图片
8、安装指定版本

sudo apt-get install  docker-ce=5:20.10.7~3-0~ubuntu-xenial

9、验证安装是否成功

docker -version

Ubuntu安装指定版本的docker_第2张图片

你可能感兴趣的:(ubuntudocker)