1、卸载旧版本(如果有的话)
sudo apt-get remove docker docker-engine docker.io containerd runc
2、 添加 Docker 的官方 GPG 密钥
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
3、设置稳定版仓库
sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/ \
$(lsb_release -cs) \
stable"
4、列出可用版本
apt-cache madison docker-ce
5、安装docker,我直接选择最新的安装
sudo apt-get install -y docker-ce docker-ce-cli containerd.io
6、测试是否安装成功
sudo docker run hello-world
测试成功,安装完成。