Docker Push to Azure Container Registry: Access Denied

Viewed 4104

I'm trying to push images to an instance of Azure Container Registry but it keeps failing even though I have logged in successfully.

enter image description here

2 Answers

The tag needs to be:

azure_registry_name.azurecr.io/container-name:tag

in my case:

docker push sunlabregistry.azurecr.io/python

First you have tag your local images with sunlabregistry.azurecr.io/python-app:v1 then use docker push /python-app:v1 tag should be mentioned.

Related