From the course: Microsoft Azure Administrator Associate (AZ-104) Cert Prep by Microsoft Press
Unlock this course with a free trial
Join today to access over 25,200 courses taught by industry experts.
Building a private container registry - Azure Tutorial
From the course: Microsoft Azure Administrator Associate (AZ-104) Cert Prep by Microsoft Press
Building a private container registry
- [Instructor] In this lecture, we're going to create an Azure Container Registry. Before we do this, it's important to understand what a registry is and why we need them. So when we're working with containers, for example, with Azure Container Apps or Azure Container Instances, we have to configure them with a container image. Now, we can create the images ourselves using Docker files, or we can pull them as existing images from public and other private repositories. So two common public repositories we can use are hub.docker.com that contains lots of open-source images that are either prebuilt by other people or even other companies. And Microsoft themselves have their own artifact registry where they store a lot of images, for example, for their .NET stacks and with samples and so on. However, the chances are we'll want to build our own images and store them securely for our own use. And this is why we would want to build our own Azure Container Repository to store those images. So…