一、准备工作:卸载旧版本
$ sudo apt-get remove docker docker-engine docker.io containerd runc
二、安装系统必要的工具
1、更新 apt 包索引
> sudo apt-get update
2、安装依赖包
> sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common
3、安装官方的GPG证书
(1)官方的证书
> $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
(2)阿里云的证书
> curl -fsSL https://mirrors.aliyun.com/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
4、写入软件信息
(1)官方的软件仓库
> sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \ stable"
(2)阿里云的软件仓库,国内速度比上面快。
> sudo add-apt-repository "deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
三、安装
> sudo apt-get -y update > sudo apt-get -y install docker-ce
四、测试安装是否成功
1、查看版本
> docker version
2、设置docker自启动
sudo systemctl enable docker
3、查看docker是否运行起来
systemctl status docker
安装成功。