Answers for "how to stop docker running container"

29

stop all container in docker

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

Code answers related to "how to stop docker running container"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language