Sheffield Web Programmer

Docker – clean up old images

November 01, 2016

If you do a > docker images

you might notice a lot of images with the name of none. I believe these are a load of out of date images. You can clean these up by executing the following on the command line

docker rmi $(docker images -f “dangling=true” -q)