美文网首页
7. 【Ubuntu】Docker排错填坑之路

7. 【Ubuntu】Docker排错填坑之路

作者: cooling2016 | 来源:发表于2018-04-30 22:31 被阅读0次

本文写作目的:总结归纳在docker使用过程中遇到的问题,并逐一记录,方便后续翻查。

Q1.docker service无法启动

当运行"service docker start",系统报出如图1所示的错误:

图1 service docker start--报错

A1.解决方法

【step1】 # rm -rf /var/lib/docker/

【step2】 # vim /etc/docker/daemon.json
  {
   #添加下面内容

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

【step3】 #service docker start 

【step4】 #service docker status

[PS] 参考:《docker无法正常启动》


Not End,后文持续更新.....

相关文章

网友评论

      本文标题:7. 【Ubuntu】Docker排错填坑之路

      本文链接:https://www.haomeiwen.com/subject/oeptrftx.html