Answers for "delete the stopped container"

8

remove stopped containers

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

Delete all running and stopped containers

docker container rm -f $(docker ps -aq)
Posted by: Guest on January-06-2022

Code answers related to "delete the stopped container"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language