Job for docker.service failed because the control process exited with error codehtml
这个通常是因为/etc/docker/daemon.json里面配置有误docker
正确配置例子json
[root@k8s129 v2]# cat /etc/docker/daemon.json
{
"registry-mirrors": ["https://aeckruos.mirror.aliyuncs.com"],
"insecure-registries": ["192.168.6.129:5000"]
}post
逗号不能漏spa
切记切记。。。。。每行是有一个,号做为分隔符。code