【docker镜像加速器配置】

提示:本文原创作品,良心制作,干货为主,简洁清晰,一看就会

文章目录

方式一

bash 复制代码
root@docker:~# vim /etc/docker/daemon.json
{
"registry-mirrors":["https://a88uijg4.mirror.aliyuncs.com",
                    "https://docker.lmirror.top",
					"https://docker.m.daocloud.io", 
					"https://hub.uuuadc.top",
					"https://docker.anyhub.us.kg",
					"https://dockerhub.jobcher.com",
					"https://dockerhub.icu",
					"https://docker.ckyl.me",
					"https://docker.awsl9527.cn",
					"https://docker.laoex.link"]
}
root@docker:~# systemctl daemon-reload
root@docker:~# systemctl restart docker
root@docker:~# docker pull nginx:1.24   #测试拉取
1.24: Pulling from library/nginx
04e7578caeaa: Pull complete 
57a1056ea484: Pull complete 
6989106bacf0: Pull complete 
c00d1142b331: Pull complete 
cb49393af980: Pull complete 
5ac1ebd8aebe: Pull complete 
Digest: sha256:f6daac2445b0ce70e64d77442ccf62839f3f1b4c24bf6746a857eff014e798c8
Status: Downloaded newer image for nginx:1.24
docker.io/library/nginx:1.24

方式二

bash 复制代码
root@docker:~# vim /etc/docker/daemon.json
{
    "registry-mirrors": ["https://docker.mirrors.ustc.edu.cn",
                        "https://docker.m.daocloud.io",
                        "http://hub-mirrors.c.163.com"],
    "max-concurrent-downloads": 10,
    "log-driver": "json-file",
    "log-level": "warn",
    "data-root": "/var/lib/docker"
}
root@docker:~# systemctl daemon-reload
root@docker:~# systemctl restart docker
root@docker:~# docker pull nginx   #测试拉取
Using default tag: latest
latest: Pulling from library/nginx
5435b2dcdf5c: Pull complete 
054715a6bffa: Pull complete 
88d1d984b765: Pull complete 
4a038fd18db1: Pull complete 
84e114c2bb36: Pull complete 
7b5d674621c2: Pull complete 
448ea5cac5d5: Pull complete 
Digest: sha256:7f0adca1fc6c29c8dc49a2e90037a10ba20dc266baaed0988e9fb4d0d8b85ba0
Status: Downloaded newer image for nginx:latest
docker.io/library/nginx:latest

注:

文中若有疏漏,欢迎大家指正赐教。

本文为100%原创,转载请务必标注原创作者,尊重劳动成果。

求赞、求关注、求评论!你的支持是我更新的最大动力,评论区等你~

相关推荐
D2aZXN3FhrDa7e2121 小时前
佛山乐从低预算实体店如何选择?看美诚AI自动化获客方案
运维·人工智能·自动化·佛山美诚科技有限公司
BullSmall1 小时前
Sonarqube9.9 docker 镜像启动后 conf 下的配置文件没有了
docker·容器·eureka
无足鸟ICT1 小时前
【RHCA+】查看变量
linux·运维·服务器
ruofu331 小时前
wsl端是py312,但是项目是py311, 如何下载py311的依赖包(wheels)
python·docker
Kina_C2 小时前
Linux DNS 服务器-从高速缓存到辅助 DNS 部署指南
linux·运维·服务器·dns
suaizai_2 小时前
TypeScript 7 正式发布!Vue 暂被 “拒之门外“ !!!
linux·运维·ubuntu
spider_xcxc2 小时前
Docker 实战:容器化多服务应用,Dockerfile 与 Compose 配置全解析
docker·云原生·eureka·虚拟化·容器化
慕伏白3 小时前
【慕伏白】Linux 系统如何根据端口号关闭进程
linux·运维·服务器
letisgo53 小时前
VMware Workstation + Ubuntu 26.04 LTS 小白运维部署手册
linux·运维·ubuntu
hay_lee3 小时前
Kubernetes StatefulSet:OrderedReady 极简指南
云原生·容器·kubernetes