Docker无法重新启动装载硬盘上的数据

我使用mount /dev/vdb /mnt/data/mnt/data上挂载一个硬盘

更改默认的/etc/docker/daemon.json文件夹: /etc/docker/daemon.json

 { "graph": "/mnt/data/docker" } 

一切工作正常。

但在计算机重新启动后:docker守护进程无法重新启动

我得到这些错误:

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

 $ systemctl status docker.service ● docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) Active: inactive (dead) (Result: exit-code) since Thu 2017-10-05 13:58:58 UTC; 45s ago Docs: https://docs.docker.com Process: 5896 ExecStart=/usr/bin/dockerd -H fd:// (code=exited, status=1/FAILURE) Main PID: 5896 (code=exited, status=1/FAILURE) Oct 05 13:58:58 mycomputer systemd[1]: Failed to start Docker Application Container Engine. Oct 05 13:58:58 mycomputer systemd[1]: docker.service: Unit entered failed state. Oct 05 13:58:58 mycomputer systemd[1]: docker.service: Failed with result 'exit-code'. Oct 05 13:58:58 mycomputer systemd[1]: docker.service: Service hold-off time over, scheduling restart. Oct 05 13:58:58 mycomputer systemd[1]: Stopped Docker Application Container Engine. Oct 05 13:58:58 mycomputer systemd[1]: docker.service: Start request repeated too quickly. Oct 05 13:58:58 mycomputer systemd[1]: Failed to start Docker Application Container Engine.