当前位置:首页 > linux运维 > 正文内容

使用自定义docker加速地址下载镜像

14324472938个月前 (11-17)linux运维1110

1.例如加速地址为:

https://docker.m.daocloud.io

2.配置docker加速地址

cat > /etc/docker/daemon.json <<EOF
> {"registry-mirrors": ["https://docker.m.daocloud.io"]}
> EOF

3.重启docker让加速地址生效

systemctl  daemon-reload 
systemctl  start  docker.service

4.使用加速地址下载docker

docker pull docker.m.daocloud.io/hello-world   #拉取镜像
docker tag docker.m.daocloud.io/hello-world hello-world   #拉取镜像自定义文件名

5.可以使用该开源项目搭建docker加速项目:https://github.com/jonssonyan/cf-workers-proxy

扫描二维码推送至手机访问。

版权声明:本文由爱开发博客发布,如需转载请注明出处。

本文链接:https://www.lovekf.cn/?id=36

分享给朋友:

“使用自定义docker加速地址下载镜像” 的相关文章

Xray VLESS+TCP+XTLS/TLS+Nginx+WebSocket 一键安装脚本 By wulabing

Xray VLESS+TCP+XTLS/TLS+Nginx+WebSocket 一键安装脚本 By wulabing

Xray 基于 Nginx 的 VLESS + XTLS 一键安装脚本,支持VLESS + TCP + TLS + Nginx + VLESS + TCP + XTLS / TLS + Nginx等多种组合一键安装,系统支持Debian 9+ / Ubuntu 18.04+ / Centos7+ /...

nas 里好用的docker 推荐

1.adguard/adguardhome 这是一个广告拦截项目,具备dns功能,特别适合在局域网部署,防止dns污染和用于做开发测试的时候对测试域名进行host。 --restart unless-stopped\ -v /my/own/workdir:/opt/adguar...

docker镜像无法下载的解决方案

要更换Docker镜像仓库,您需要编辑Docker的配置文件,并将镜像仓库地址更改为您想要使用的地址。以下是在CentOS系统上更换Docker镜像仓库的一般步骤:1.连接到您的CentOS服务器,并使用文本编辑器(如vi或nano)打开Docker的配置文件/etc/docker/daemon.j...

docker 安装

1.卸载旧版docker sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \...

CentOS优化手册

1. 调整 journal 存储设置( 解决systemd 或者 systemd-journald 进程占用大量 CPU 或内存资源的情况)编辑 /etc/systemd/journald.conf 文件,并更改 Storage 参数。例如,将其从 persistent 改为 volatile 或...

linux基线配置脚本(自己更具需求书写,并不适合所有人)

支持内容:1.检查更新系统时间,并设置时区为北京时区。 #!/bin/bash # 更新系统时间(假设你有NTP服务或者可以访问互联网时间服务器) echo "Updating system time using NTP..." sudo timedatectl set-...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。