From the course: Azure for DevOps: Containers

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Create an ACR

Create an ACR - Azure Tutorial

From the course: Azure for DevOps: Containers

Start my 1-month free trial

Create an ACR

- [Instructor] Creating an Azure container registry instance is as simple as typing in the az CLI command, az acr create. The minimal parameters I need to give are, the name of the container registry, name of the resource group, Azure region, and finally the pricing tier. Pay close attention to the Azure datacenter region you select. You should create the container registry in the same region in which you plan to deploy your containers. This minimizes network latency, and lets you avoid network egress costs. Pulling images from one datacenter to another comes with an added cost. But pulling images inside the datacenter, does not incur network egress costs. Please also note that the name must be globally unique, as there will be globally solvable DNS name created for your container registry. It's also considered a best practice to create the Azure container registry instance in a resource group of its own, in a shared…

Contents