April 2017
Beginner
404 pages
9h 30m
English
Obsolete containers or images occupy space, you might want to clean up images or containers from the host to clean up space or to install and run new ones. Docker provides the following options for cleanup:
docker stop [container id/name] -f docker stop $(docker ps -a -q) # stops all the containers
docker rm [container id/name] -force #removes container ...Read now
Unlock full access