Docker安装及镜像加速

新博客地址:https://gyrojeff.top,欢迎访问! 本文为博客自动同步文章,为了更好的阅读体验,建议您移步至我的博客👇

本文标题:Docker安装及镜像加速

文章作者:gyro永不抽风

发布时间:2020年11月13日 - 23:11

最后更新:2021年01月02日 - 23:01

原始链接:http://hexo.gyrojeff.moe/2020/11/13/Docker%E5%AE%89%E8%A3%85%E5%8F%8A%E9%95%9C%E5%83%8F%E5%8A%A0%E9%80%9F/

许可协议: 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 转载请保留原文链接及作者!

安装Docker

卸载旧版本

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

设置仓库

安装apt依赖包:

1
2
3
4
5
6
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common

添加官方GPG密钥:

1
curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -

9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 通过搜索指纹的后8个字符,验证您现在是否拥有带有指纹的密钥。

1
2
3
4
5
6
$ sudo apt-key fingerprint 0EBFCD88

pub rsa4096 2017-02-22 [SCEA]
9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88
uid [ unknown] Docker Release (CE deb) <docker@docker.com>
sub rsa4096 2017-02-22 [S]

使用以下指令设置稳定版仓库

1
2
3
4
sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/ \
$(lsb_release -cs) \
stable"

安装 Docker Engine-Community

更新 apt 包索引。

1
sudo apt-get update

安装最新版本的 Docker Engine-Community 和 containerd:

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

Docker换源

  1. 先进入阿里云开发社区,并找到控制台:https://developer.aliyun.com/
  2. 搜索容器镜像服务:
  3. 按照图片当中的做:

确认成功的方法:

1
sudo docker info

观察最后几行当中Registry Mirrors有没有出现。

posted @ 2020-11-20 01:16  gyro永不抽风  阅读(99)  评论(0编辑  收藏  举报