Answers for "how to stop currently running docker containers"

4

docker stop all containers

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

stop docker container

//Check if the container is running
docker ps -a

docker container stop {container-id}
Posted by: Guest on June-03-2020

Code answers related to "how to stop currently running docker containers"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language