查看docker stop 幫助
[root@localhost ~]# docker stop --help
Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...]
Stop one or more running containers #可以一次性停止一個或者多個容器
Options:
--help Print usage
-t, --time int Seconds to wait for stop before killing it (default 10) #等待幾秒停止容器,默認(rèn)是10秒
[root@localhost ~]#
docker stop 容器
[root@localhost ~]# docker stop seafile
seafile
[root@localhost ~]# docker ps |grep seafile
[root@localhost ~]# docker ps -a|grep seafile
0375d08222b6 local_seafile/server:latest "/sbin/my_init -- ..." 3 days ago Exited (2) 19 seconds ago seafile
[root@localhost ~]#
docker stop -t 20
等待20秒停止容器,感覺不太理解有待研究关贵,用途暫時沒有發(fā)現(xiàn)
[root@localhost ~]# date
2017年 10月 13日 星期五 11:27:34 CST
[root@localhost ~]# docker stop seafile
seafile
[root@localhost ~]# docker ps -a|grep seafile
0375d08222b6 local_seafile/server:latest "/sbin/my_init -- ..." 3 days ago Exited (2) 3 seconds ago seafile
[root@localhost ~]# date
2017年 10月 13日 星期五 11:27:47 CST
[root@localhost ~]#