Answers for "how to get stop list containers in docker"

41

docker stop all containers

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

stop all docker containers

docker kill $(docker ps -q)
Posted by: Guest on August-24-2021
0

stop all running docker containers

Docker delete and stop
Posted by: Guest on February-25-2022

Code answers related to "how to get stop list containers in docker"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language