Ubuntu16.04安装docker(在线方式)
1.卸载可能存在的旧版本
apt-get remove docker docker-engine docker-ce docker.io
2.更新apt包索引
sudo apt-get update
3.安装以下包以使apt可以通过HTTPS使用存储库(repository)
apt-get install -y apt-transport-https ca-certificates curl software-
properties-common
4.添加Docker官方的GPG密钥
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
成功后应该显示OK(如果不OK就重装虚拟机)
5.设置stable存储库
add-apt-repository “deb [arch=amd64] https://download.docker.com/linux/ubuntu
$(lsb_release -cs) stable”
6.再更新一下apt包索引
apt-get update
7.安装最新版本的Docker CE
apt-get install -y docker-ce
8.验证
8.1查看docker服务是否启动
systemctl status docker
或如下命令
service docker status
8.2若未启动,则启动docker服务
systemctl start docker
或如下命令
service docker start
8.3经典的hello world
docker run hello-world
输入以上命令后,窗口有输出,表示docker安装成功
注1:linux内核版本要求
docker 目前支持的最低 ubuntu 版本为 14.04 LTS ,但实际上从稳定性上考虑,推
荐使用
16.04或18.0.4 LTS 版本,并且系统内核越新越好,以支持 Docker 最新的特性
本文档介绍了如何在Ubuntu16.04系统中在线安装Docker,包括卸载旧版本、更新包索引、安装依赖、添加GPG密钥、设置存储库、安装Docker CE及验证安装成功的全过程。

1451

被折叠的 条评论
为什么被折叠?



