Answers for "how to stop all docker containers at once"

20

docker stop all

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
Posted by: Guest on May-10-2020
4

docker stop all containers

docker stop $(docker ps -a -q)
Posted by: Guest on January-02-2021

Code answers related to "how to stop all docker containers at once"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language