docker.service: Failed with result ‘exit-code‘

博客内容讲述了在使用Docker时遇到的daemon.json配置错误,导致docker.service启动失败。通过检查日志发现是daemon.json文件的问题,然后修改了文件内容,将registry-mirrors设置为'http://hub-mirror.c.163.com',最后重启Docker服务解决了问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

docker.service: Failed with result 'exit-code'

查看日志:

$ sudo dockerd --debug

看到是我们的daemon.json文件有问题 

打开daemon.json

sudo vim /etc/docker/daemon.json

改为

{
  "registry-mirrors": ["http://hub-mirror.c.163.com"]
}

重启

sudo service docker restart

[root@localhost ~]# journalctl -u docker.service --since "5 minutes ago" --no-pager -- Logs begin at Sun 2025-06-15 23:54:02 CST, end at Mon 2025-06-16 01:14:57 CST. -- 6月 16 01:09:59 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:09:59 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 303. 6月 16 01:09:59 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:09:59 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:09:59 localhost.localdomain dockerd[99518]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:09:59 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:09:59 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:04 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:04 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 304. 6月 16 01:10:04 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:04 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:04 localhost.localdomain dockerd[99525]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:04 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:04 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:09 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:09 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 305. 6月 16 01:10:09 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:09 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:09 localhost.localdomain dockerd[99534]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:09 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:09 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:14 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:14 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 306. 6月 16 01:10:14 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:14 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:14 localhost.localdomain dockerd[99551]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:14 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:14 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:20 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:20 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 307. 6月 16 01:10:20 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:20 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:20 localhost.localdomain dockerd[99560]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:20 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:20 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:25 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:25 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 308. 6月 16 01:10:25 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:25 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:25 localhost.localdomain dockerd[99568]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:25 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:25 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:30 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:30 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 309. 6月 16 01:10:30 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:30 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:30 localhost.localdomain dockerd[99577]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:30 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:30 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:35 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:35 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 310. 6月 16 01:10:35 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:35 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:35 localhost.localdomain dockerd[99585]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:35 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:35 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:41 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:41 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 311. 6月 16 01:10:41 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:41 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:41 localhost.localdomain dockerd[99593]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:41 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:41 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:46 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:46 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 312. 6月 16 01:10:46 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:46 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:46 localhost.localdomain dockerd[99600]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:46 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:46 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:51 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:51 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 313. 6月 16 01:10:51 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:51 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:51 localhost.localdomain dockerd[99609]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:51 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:51 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:10:56 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:10:56 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 314. 6月 16 01:10:56 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:10:56 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:10:56 localhost.localdomain dockerd[99616]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:10:56 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:10:56 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:02 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:02 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 315. 6月 16 01:11:02 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:02 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:02 localhost.localdomain dockerd[99623]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:02 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:02 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:07 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:07 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 316. 6月 16 01:11:07 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:07 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:07 localhost.localdomain dockerd[99630]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:07 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:07 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:12 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:12 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 317. 6月 16 01:11:12 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:12 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:12 localhost.localdomain dockerd[99647]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:12 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:12 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:17 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:17 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 318. 6月 16 01:11:17 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:17 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:17 localhost.localdomain dockerd[99656]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:17 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:17 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:23 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:23 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 319. 6月 16 01:11:23 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:23 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:23 localhost.localdomain dockerd[99667]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:23 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:23 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:28 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:28 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 320. 6月 16 01:11:28 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:28 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:28 localhost.localdomain dockerd[99676]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:28 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:28 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:33 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:33 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 321. 6月 16 01:11:33 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:33 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:33 localhost.localdomain dockerd[99683]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:33 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:33 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:38 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:38 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 322. 6月 16 01:11:38 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:38 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:38 localhost.localdomain dockerd[99690]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:38 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:38 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:44 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:44 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 323. 6月 16 01:11:44 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:44 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:44 localhost.localdomain dockerd[99697]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:44 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:44 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:49 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:49 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 324. 6月 16 01:11:49 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:49 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:49 localhost.localdomain dockerd[99704]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:49 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:49 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:54 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:54 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 325. 6月 16 01:11:54 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:54 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:54 localhost.localdomain dockerd[99713]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:54 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:54 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:11:59 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:11:59 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 326. 6月 16 01:11:59 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:11:59 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:11:59 localhost.localdomain dockerd[99720]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:11:59 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:11:59 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:05 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:05 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 327. 6月 16 01:12:05 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:05 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:05 localhost.localdomain dockerd[99728]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:05 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:05 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:10 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:10 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 328. 6月 16 01:12:10 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:10 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:10 localhost.localdomain dockerd[99737]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:10 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:10 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:15 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:15 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 329. 6月 16 01:12:15 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:15 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:15 localhost.localdomain dockerd[99754]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:15 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:15 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:20 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:20 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 330. 6月 16 01:12:20 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:20 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:20 localhost.localdomain dockerd[99763]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:20 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:20 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:26 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:26 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 331. 6月 16 01:12:26 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:26 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:26 localhost.localdomain dockerd[99770]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:26 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:26 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:31 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:31 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 332. 6月 16 01:12:31 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:31 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:31 localhost.localdomain dockerd[99779]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:31 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:31 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:36 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:36 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 333. 6月 16 01:12:36 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:36 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:36 localhost.localdomain dockerd[99786]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:36 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:36 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:41 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:41 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 334. 6月 16 01:12:41 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:41 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:41 localhost.localdomain dockerd[99794]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:41 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:41 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:47 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:47 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 335. 6月 16 01:12:47 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:47 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:47 localhost.localdomain dockerd[99801]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:47 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:47 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:52 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:52 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 336. 6月 16 01:12:52 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:52 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:52 localhost.localdomain dockerd[99810]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:52 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:52 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:12:57 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:12:57 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 337. 6月 16 01:12:57 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:12:57 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:12:57 localhost.localdomain dockerd[99818]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:12:57 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:12:57 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:02 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:02 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 338. 6月 16 01:13:02 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:02 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:02 localhost.localdomain dockerd[99827]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:02 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:02 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:08 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:08 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 339. 6月 16 01:13:08 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:08 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:08 localhost.localdomain dockerd[99835]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:08 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:08 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:13 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:13 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 340. 6月 16 01:13:13 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:13 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:13 localhost.localdomain dockerd[99852]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:13 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:13 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:18 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:18 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 341. 6月 16 01:13:18 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:18 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:18 localhost.localdomain dockerd[99864]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:18 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:18 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:23 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:23 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 342. 6月 16 01:13:23 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:23 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:23 localhost.localdomain dockerd[99871]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:23 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:23 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:29 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:29 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 343. 6月 16 01:13:29 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:29 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:29 localhost.localdomain dockerd[99880]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:29 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:29 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:34 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:34 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 344. 6月 16 01:13:34 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:34 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:34 localhost.localdomain dockerd[99887]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:34 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:34 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:39 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:39 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 345. 6月 16 01:13:39 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:39 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:39 localhost.localdomain dockerd[99895]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:39 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:39 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:44 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:44 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 346. 6月 16 01:13:44 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:44 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:44 localhost.localdomain dockerd[99902]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:44 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:44 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:50 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:50 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 347. 6月 16 01:13:50 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:50 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:50 localhost.localdomain dockerd[99909]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:50 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:50 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:13:55 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:13:55 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 348. 6月 16 01:13:55 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:13:55 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:13:55 localhost.localdomain dockerd[99945]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:13:55 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:13:55 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:00 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:00 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 349. 6月 16 01:14:00 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:00 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:00 localhost.localdomain dockerd[99952]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:00 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:00 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:04 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:04 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:04 localhost.localdomain dockerd[99961]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:04 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:04 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:10 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:10 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 350. 6月 16 01:14:10 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:10 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:10 localhost.localdomain dockerd[99970]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:10 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:10 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:15 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:15 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 351. 6月 16 01:14:15 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:15 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:15 localhost.localdomain dockerd[99988]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:15 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:15 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:20 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:20 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 352. 6月 16 01:14:20 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:20 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:20 localhost.localdomain dockerd[100002]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:20 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:20 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:25 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:25 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 353. 6月 16 01:14:25 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:25 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:25 localhost.localdomain dockerd[100009]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:25 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:25 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:31 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:31 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 354. 6月 16 01:14:31 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:31 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:31 localhost.localdomain dockerd[100018]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:31 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:31 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:36 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:36 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 355. 6月 16 01:14:36 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:36 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:36 localhost.localdomain dockerd[100027]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:36 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:36 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:41 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:41 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 356. 6月 16 01:14:41 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:41 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:41 localhost.localdomain dockerd[100034]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:41 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:41 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:46 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:46 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 357. 6月 16 01:14:46 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:46 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:46 localhost.localdomain dockerd[100041]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:46 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:46 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:52 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:52 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 358. 6月 16 01:14:52 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:52 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:52 localhost.localdomain dockerd[100050]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:52 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:52 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'. 6月 16 01:14:57 localhost.localdomain systemd[1]: docker.service: Service RestartSec=5s expired, scheduling restart. 6月 16 01:14:57 localhost.localdomain systemd[1]: docker.service: Scheduled restart job, restart counter is at 359. 6月 16 01:14:57 localhost.localdomain systemd[1]: Stopped Docker Application Container Engine. 6月 16 01:14:57 localhost.localdomain systemd[1]: Started Docker Application Container Engine. 6月 16 01:14:57 localhost.localdomain dockerd[100058]: unable to configure the Docker daemon with file /etc/docker/daemon.json: the following directives are specified both as a flag and in the configuration file: hosts: (from flag: [fd://], from file: [unix:///var/run/docker.sock]) 6月 16 01:14:57 localhost.localdomain systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE 6月 16 01:14:57 localhost.localdomain systemd[1]: docker.service: Failed with result 'exit-code'.
06-16
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值