I have a lot of images. When I try to remove them with docker rmi
docker rmi
$ sudo docker rmi acd33a9490dc Error response from daemon: No such id: 75ce1f6710b
You may also face this issue if you do not remove exited containers. You need to remove the exited container by doing this,
sudo docker ps -a | grep Exit | awk '{print $1}' | sudo xargs docker rm
Then remove your image using
sudo docker rmi