本文主要是介绍4-Docker命令之docker restart,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.docker restart介绍
docker restart命令是用来重新启动一个或多个docker容器。
2.docker restart用法
docker restart [参数] container [container......]
[root@centos79 ~]# docker restart --helpUsage: docker restart [OPTIONS] CONTAINER [CONTAINER...]Restart one or more containersAliases:docker container restart, docker restartOptions:-s, --signal string Signal to send to the container-t, --time int Seconds to wait before killing the container
[root@centos79 ~]#
3.实例
3.1.基于container id重启容器
命令:
docker restart 20ce
[root@centos79 ~]# docker ps -a | grep 20ce
20cebbe3fac3 daocloud.io/library/centos:latest "/bin/bash" 3 days ago Up About a minute centos-ztj
[root@centos79 ~]# docker restart 20ce
20ce
[root@centos79 ~]# docker
这篇关于4-Docker命令之docker restart的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!