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)
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)