How does one remove a Docker image?
www.tutorialspoint.com › how-does-one-remove-aAug 06, 2021 · Delete Images by Pruning them. You can also use the Docker image prune command to delete all the dangling images. $ docker image prune [OPTIONS] You can use several options such as ---all - To delete all the unused and dangling images as well.--filter - To provide filters to remove only certain specific images.--force - To prune images forcefully.