Answers for "docker remove all stop 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
16

docker remove all containers

docker rm $(docker ps -a -q)
Posted by: Guest on February-24-2020
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
4

how to remove a docker container

docker container rm [container id]
Posted by: Guest on May-23-2020

Code answers related to "docker remove all stop container"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language