文件内容是这样的:{ "registry-mirrors": ["https://cwcid0hz.mirror.aliyuncs.com"] "exec-opts": ["native.cgroupdriver=systemd"] }
时间: 2023-07-19 09:51:53 浏览: 128
vue-cli搭建脚手架.doc
根据你提供的内容,我们可以看到在 `"registry-mirrors"` 和 `"exec-opts"` 之间缺少了逗号 `,`,这可能会导致 JSON 格式不正确,从而导致 Docker 服务启动失败。
你可以尝试在 `"registry-mirrors"` 行的末尾添加逗号 `,`,使其变为:
```
{
"registry-mirrors": ["https://cwcid0hz.mirror.aliyuncs.com"],
"exec-opts": ["native.cgroupdriver=systemd"]
}
```
然后保存文件并尝试重新启动 Docker 服务,看看是否可以成功启动。
阅读全文