How to delete all unnamed images at once in Docker

When working with Docker, you may find yourself with a lot of unnamed images like the one below. The images are Official Description, and you can delete all of them at once as follows. $ docker rmi $(docker images -f "dangling=true" -q) Related Category Articles www.ekwbtblog.com www.ekwbtblog.com …