Answers for "how to stop containers in docker"

20

docker stop all containers

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

docker stop all containers

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

docker stop container

docker container stop [CONTAINER]
Posted by: Guest on March-19-2021

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language