本篇文章介绍在 Ubuntu18.04 系统中安装 Docker CE,使用 Apt 进行安装。
1. 卸载旧版本
$ sudo apt-get remove docker docker-engine docker.io
2. 添加 Apt 软件包和 CA 证书
Apt 使用 HTTPS 以确保软件下载的安全。因此,我们需要添加使用 HTTPS 传输的软件包以及CA证书。
$ sudo apt-get update
$ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
为了确认所下载软件包的合法性,需要添加软件源的 GPG 密钥,这里使用国内远提升速度;
$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
向 Apt 资源库中添加 Docker 软件源;
$ sudo add-apt-repository "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu $(lsb_release -cs) stable"
3. 安装 Docker
更新软件包缓存,并安装 Docker CE;
$ sudo apt-get update
$ sudo apt-get install docker-ce
4. 启动 Docker
启动docker并设置自启动;
$ sudo systemctl enable docker
$ sudo systemctl start docker
测试是否成功:
5. 配置镜像加速
推荐使用阿里云,阿里在国内的速度和稳定性还是很高的。需要登录阿里的帐号,没有的可以免费注册,传送门。
上面有不同系统使用的方式,按照阿里的文档操作即可。
文章同步发布在我的个人博客中,传送门Hesunfly Blog