In this tutorial im going to sove Unable to find image ‘getting-started:latest’ locally issue when i run this command “docker run -dp 127.0.0.1:3000:3000 getting-started” this showing error. lets go to solve this issues.
Error:-
Unable to find image 'getting-started:latest' locally
docker: Error response from daemon: pull access denied for getting-started, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
See 'docker run --help'.
Solutions:-
docker run -d -p 80:80 docker/getting-started
Now problem has been resolved.