You can see image as highlighted below but when I tried to run that docker image it is coming up as below error
Please suggest
That’s not what your screenshot shows…
You point to azp-agent:linux
, but try to run azp-agent:latest
.
Also, please never post text content as image, as it prevents us from quoting parts from it.
I am still seeing same error
PS C:\Users\LAPSAdmin> docker run -d azp-agent:latest
Unable to find image ‘azp-agent:latest’ locally
docker: Error response from daemon: pull access denied for azp-agent, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied.
If you don’t specify a tag, then the latest
tag will be used.
Thus, your first test used the tag implicitly, and your second test used it explicitly. Of course, the result is the same. And it is correct that it’s not working, as such a tag does not exist.
You need to use azp-agent:linux
It worked, thank you