Answers for "how to remove docker downloaed fiels"

20

docker stop all

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

docker remove container

//Check if the container is running
docker ps -a

//stop the container
docker stop <container_id>

//remove the container
docker rm <container_id>
Posted by: Guest on April-28-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language