-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
107 lines (107 loc) · 2.92 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>镜像使用说明</title>
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.header {
background: linear-gradient(135deg, #667eea, #764ba2);
color: #fff;
padding: 20px 0;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.content {
margin-bottom: 20px;
}
.footer {
text-align: center;
padding: 20px 0;
background-color: #333;
color: #fff;
}
pre {
background-color: #272822;
color: #f8f8f2;
padding: 15px;
border-radius: 5px;
overflow-x: auto;
}
code {
font-family: 'Source Code Pro', monospace;
}
a {
color: #4CAF50;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
.container {
margin: 20px;
padding: 15px;
}
.header {
padding: 15px 0;
}
}
</style>
<link href="https://fonts.geekzu.org/css2?family=Roboto:wght@400;700&family=Source+Code+Pro:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<h1>镜像使用说明</h1>
</div>
<div class="container">
<div class="content">
<center><h1>域名</h1></center>
<p>哪个快用哪个,都添加到镜像加速也不是不行</p>
<pre><code>hub.nat.tf
hub1.nat.tf</code></pre>
<center><h1>使用方法①</h1></center>
<b>假如拉取原始镜像命令如下</b>
<pre><code>docker pull whyour/qinglong:latest</code></pre>
<b>仅需在原命令前缀加入加速镜像地址 例如:</b>
<pre><code>docker pull hub.nat.tf/whyour/qinglong:latest</code></pre>
<center><h1>使用方法②</h1></center>
<b>一键设置镜像加速:修改文件 /etc/docker/daemon.json(如果不存在则创建)</b>
<pre><code>nano /etc/docker/daemon.json</code></pre>
<b>修改JSON文件 更改为以下内容 然后保存</b>
<pre><code>{"registry-mirrors": ["https://hub.nat.tf"]}</code></pre>
<b>保存好之后 执行以下两条命令</b>
<pre><code>sudo systemctl daemon-reload #重载systemd管理守护进程配置文件</code></pre>
<pre><code>sudo systemctl restart docker #重启 Docker 服务</code></pre>
<center><h1>使用方法③</h1></center>
<b>为了加速镜像拉取,你可以使用以下命令设置 registry mirror:</b>
<pre><code>sudo tee /etc/docker/daemon.json <<EOF
{
"registry-mirrors": ["https://hub.nat.tf"]
}
EOF</code></pre>
<b>为了避免 Worker 用量耗尽,你可以手动 pull 镜像然后 re-tag 之后 push 至本地镜像仓库:</b>
<pre><code>docker pull hub.nat.tf/library/alpine:latest # 拉取 library 镜像
docker pull hub.nat.tf/coredns/coredns:latest # 拉取 coredns 镜像</code></pre>
</div>
</div>
<div class="footer">
<p>Powered by Cloudflare Workers</p>
<p><a href="https://imotao.com" target="_blank">访问博客 imotao.com</a></p>
</div>
</body>
</html>