Answers for "how to stop all docker active containers"

1

stop all docker containers

sudo docker stop $(sudo docker ps -a -q)

sudo docker rm $(sudo docker ps -a -q)
Posted by: Guest on June-08-2021
0

stop all docker containers

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

Code answers related to "how to stop all docker active containers"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language