如果出现域名无法解析的情况参考:Ubuntu22配置dns解析_苍穹之跃的博客-CSDN博客
目录
一、安装必要的一些系统工具
二、安装GPG证书
三、写入软件源信息
四、更新并安装Docker-CE
五、安装指定版本的docker-ce
六、看看是否已安装
一、安装必要的一些系统工具
sudo apt-get update
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
二、安装GPG证书
curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
三、写入软件源信息
sudo add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
四、更新并安装Docker-CE
sudo apt-get -y update
sudo apt-get -y install docker-ce
五、安装指定版本的docker-ce
查找Docker-CE的版本
apt-cache madison docker-ce
安装指定版本的Docker-CE
sudo apt-get -y install docker-ce=VERSION
文章来源:https://www.toymoban.com/news/detail-731964.html
六、看看是否已安装
sudo -s
docker ps
文章来源地址https://www.toymoban.com/news/detail-731964.html
到了这里,关于Ubuntu22安装docker的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!