Docker 容器先于主机启动?

Docker 容器先于主机启动?

查看输出:

ubuntu@iBug-Server:~$ uptime -s
2019-07-07 20:33:07
ubuntu@iBug-Server:~$ docker inspect -f '{{ .State.StartedAt }}' ibot
2019-07-07T12:30:37.871925503Z
ubuntu@iBug-Server:~$ docker restart ibot
ibot
ubuntu@iBug-Server:~$ docker inspect -f '{{ .State.StartedAt }}' ibot
2019-07-08T18:04:50.870117998Z

我机器上的 TZ 设置为,Asia/Shanghai所以它的时区是 GMT+8,翻译20:33:0712:33:07Z,即两分半钟容器ibot已启动,如 Docker 所示。

我还不知道这是怎么发生的。当时的重启是由于 root 用户运行 reboot(8) 导致的。

相关内容