Home  >  Article  >  Operation and Maintenance  >  How docker restarts all container services

How docker restarts all container services

王林
王林Original
2020-03-25 17:46:5710724browse

How docker restarts all container services

docker中 启动所有的容器命令:

docker start $(docker ps -a | awk '{ print $1}' | tail -n +2)

docker中    关闭所有的容器命令:

docker stop $(docker ps -a | awk '{ print $1}' | tail -n +2)

推荐教程:docker教程

The above is the detailed content of How docker restarts all container services. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn