Answers for "how to stop running docker container"

20

stop all container in docker

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
Posted by: Guest on May-10-2020
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 running docker container"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language