docker运行报错Job for docker.service failed because the control process exited with error code的一种原因

警告
本文最后更新于 2023-07-04,文中内容可能已过时。

docker 运行报错

本来docker能正常运行,突然报错了,容器无法跑,docker无法运行,报错。

报错提示为:

1
Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xeu docker.service" for details.

查了一下,想到刚改了docker下载源,可能原因是下载源文件的配置问题。

一种原因

添加下载源时候,符号出错。

最后一个地址后不能加逗号,所有逗号均为英文符号。

/etc/docker/deamon.json

1
2
3
4
5
6
7
8
{
"registry-mirrors": [
"https://dockerproxy.com",
"https://docker.nju.edu.cn",
"https://mirror.baidubce.com",
"https://mirror.gcr.io"
]
}
0%