Why is a docker image that exists locally not runnable with sudo when created without sudo. I have created a docker image like so: docker build -t NAME:VERSION -f Dockerfile .. When running sudo docker run IMAGE I receive the message that the dockerfile was not found locally. When running the same command without sudo: docker run IMAGE it finds the image. Why would having sudo privilege hide an image from me?