Answers for "how to remove all docker container at once"

0

how to remove all docker container at once

to remove all the docker containers at once.
$docker rm $(docker ps -a -q)

to remove all the docker images at once.
$docker rmi $(docker images -a -q)
Posted by: Guest on February-23-2021

Code answers related to "how to remove all docker container at once"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language