I\'m trying to remove an image and I get:
# docker rmi f50f9524513f Failed to remove image (f50f9524513f): Error response from daemon: conflict: unable to
I was also facing the same issue. Fallowed steps below to resolve the issue.
Stop all running containers
docker stop $(docker ps -aq) Remove all containers
docker rm $(docker ps -aq) Remove all images
docker rmi $(docker images -q)