When to use it
You should use the Azure container registry if:- one or more components of your stack need to pull or push container images.
- you have access to Azure. If you’re not using Azure, take a look at the other container registry flavors.
How to deploy it
Go here and choose a subscription, resource group, location and registry name. Then click onReview + Create
and to create your container registry.
How to find the registry URI
The Azure container registry URI should have the following format:- Go to the Azure portal.
-
In the search bar, enter
container registries
and select the container registry you want to use. If you don’t have any container registries yet, check out the deployment section on how to create one. -
Use the name of your registry to fill the template
<REGISTRY_NAME>.azurecr.io
and get your URI.
How to use it
To use the Azure container registry, we need:- Docker installed and running.
- The Azure CLI installed and authenticated.
- The registry URI. Check out the previous section on the URI format and how to get the URI for your registry.