一、打开终端

Ctrl+Alt+T

 

二、切换管理员

sudo -s
输入密码

 

三、卸载Docker旧版本(针对之前安装过docker的情况)

apt-get remove docker docker-engine docker.io containerd runc

 

四、更新apt

apt-get update

 

五、安装软件包以允许apt通过https使用存储库

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 -

 

七、验证指纹

apt-key fingerprint 0EBFCD88

 

八、添加稳定版

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

 

九、更新apt

apt-get update

 

十、安装最新版本的Docker Engine和容器

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

 

十一、运行hello-world进行验证

docker run hello-world

 

十二、输入docker ps查看

docker ps