Ubuntu16.04 安装 Docker

ε祈祈猫儿з 提交于 2019-12-05 06:47:34

root@ubuntu1604:~# more /etc/os-release
NAME="Ubuntu"
VERSION="16.04.5 LTS (Xenial Xerus)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 16.04.5 LTS"
VERSION_ID="16.04"
HOME_URL="http://www.ubuntu.com/"
SUPPORT_URL="http://help.ubuntu.com/"
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/"
VERSION_CODENAME=xenial
UBUNTU_CODENAME=xenial

 

开始安装:

 

更新软件列表:

apt-get update

 

允许apt命令可以使用HTTPS访问Docker repository:

apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

 

添加Docker官方的GPG key:

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

 

验证key:

apt-key fingerprint 0EBFCD88

 

设置repository版本为stable并更新软件列表:

add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

 

apt-get update

 

安装Docker CE和containerd:

 

apt-get install docker-ce docker-ce-cli containerd.io

 

查看docker版本:

 

docker --version

 

安装完成.

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!