Docker无法启动,报错:Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.

执行命令:

rm -rf /var/lib/docker/

vim /etc/docker/daemon.json

# 添加如下内容

{
    "graph": "/mnt/docker-data",
    "storage-driver": "overlay"
}

重启服务:

systemctl restart docker

查看状态:

systemctl status docker

Docker无法启动Job for docker.service failed

相关文章:

  • 2022-12-23
  • 2021-08-30
  • 2022-12-23
  • 2021-06-04
  • 2021-04-18
  • 2022-02-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-04-15
  • 2021-04-19
  • 2021-11-09
  • 2022-12-23
  • 2021-11-15
相关资源
相似解决方案