安利最全docker加速器配置

之前写过 docker专栏
https://blog.csdn.net/frdevolcqzyxynjds/category_9967030.html

本篇文章是继 运维之docker启动失败Failed to start Docker Application Container Engine.
这篇文章后,安利最全docker加速器配置


关键配置信息

{
“registry-mirrors”: [
“https://dockerhub.azk8s.cn”,
“https://reg-mirror.qiniu.com”,
“https://bjtzu1jb.mirror.aliyuncs.com”
]
}


以下是详细操作

[root@localhost ~]# ll /etc/docker/daemon.json
-rw-r--r-- 1 root root 130 Feb 17 10:34 /etc/docker/daemon.json
[root@localhost ~]#

[root@localhost ~]# vim /etc/docker/daemon.json

[root@localhost ~]# cat /etc/docker/daemon.json
{
     
"registry-mirrors": [
"https://dockerhub.azk8s.cn",
"https://reg-mirror.qiniu.com",
"https://bjtzu1jb.mirror.aliyuncs.com"
]
}
[root@localhost ~]#

你可能感兴趣的:(docker,Linux,docker)