错误描述
在重启docker时使用 systemctl restart docker报错
Job for docker.service failed because the control process exited with error code. See “systemctl status docker.service” and “journalctl -xe” for details.
解决办法:
vi /etc/docker/daemon.json
json文件格式不正确
正确的:
我的问题
使用命令出错,导致写在etc里面的json文件内容出错。
这个命令正确的:
tee /etc/docker/daemon.json <<-‘EOF’
{
“registry-mirrors”:[“https://a4xbrabe.mirror.aliyuncs.com”]
}
EOF
切记,该换行要换行(我这个应该是不可以直接复制粘贴,我用的引用格式,所以需要自己再打一边,记得加速镜像要用自己的哦,阿里云里自己注册自己的,)
修改完文件内容后就可以查看状态是否running