1、删除docker相关组件
sudo apt-get autoremove docker docker-ce docker-engine docker.io containerd runc
2、安装依赖
sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common
3、安装GPG证书
# 官方
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# 国内
curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
4、设置稳定版仓库
# 官方:
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
# 阿里云
sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu \
$(lsb_release -cs) \
stable"
5、查找Docker-CE的版本:
sudo apt-cache madison docker-ce
6、更新并安装Docker-CE
sudo apt-get -y update
# 安装最新版本
sudo apt-get install docker-ce docker-ce-cli containerd.io
# 安装指定版本
sudo apt-get install \
docker-ce=5:20.10.17~3-0~ubuntu-bionic \
docker-ce-cli=5:20.10.17~3-0~ubuntu-bionic \
containerd.io
7、验证安装是否成功
sudo docker --version
8、启动Docker并设置开机启动
sudo systemctl enable docker
sudo systemctl start docker
评论区