add kubernetes

This commit is contained in:
dylan
2026-01-09 17:56:38 +08:00
parent 6e7af2d016
commit 2a879d383c
203 changed files with 17379 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
> 本文作者:丁辉
# Docker配置镜像加速
1. 编辑文件
```bash
vi /etc/docker/daemon.json
```
内容如下
```json
{
"registry-mirrors": [
"https://docker.m.daocloud.io",
"https://docker.1ms.run",
"https://docker-0.unsee.tech",
"https://registry-1.docker.io"
]
}
```
2. 重启 Docker 服务
```bash
systemctl restart docker
```
3. 验证
```bash
docker info
```