ubuntu18.04安装docker
程序员文章站
2024-03-13 15:34:21
...
文章目录
1.安装
#由于apt官方库里的docker版本可能比较旧,所以先卸载可能存在的旧版本
sudo apt-get remove docker docker-engine docker-ce docker.io
#更新apt包索引
sudo apt-get update
#安装以下包以使apt可以通过HTTPS使用存储库(repository)
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
#安装stable存储库
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
#再更新一下apt包索引
sudo apt-get update
#安装最新版本的Docker CE
sudo apt-get install docker-ce
#这里安装的最新版,其实是安装你电脑上可用的最新版,查看系统可用的版本
apt-cache madison docker-ce
#选择要安装的特定版本,第二列是版本字符串,第三列是存储库名称,它指示包来自哪个存储库,以及扩展它的稳定性级别。
#要安装一个特定的版本,将版本字符串附加到包名中,并通过等号(=)分隔它们
sudo apt-get install docker-ce=<VERSION>
2.验证docker
#查看docker服务是否启动:
systemctl status docker
#若未启动,则启动docker服务:
sudo systemctl start docker
#测试经典的hello world:
sudo docker run hello-world
3.源码安装
可参考其他博客
https://blog.csdn.net/candcplusplus/article/details/80205190
上一篇: JAVA基础杂记一
下一篇: python中的import