Deploying compute workloads by using images and containers Part 3 – Create an Azure Container Registry and upload a container image
1 min read

Deploying compute workloads by using images and containers Part 3 – Create an Azure Container Registry and upload a container image

In this part we will create an Azure Container Registry.

az acr create --name acraz204lab05 --resource-group 05lab-rg --sku Basic -l westeurope
az acr build --registry acraz204lab05 --image ipcheck:latest

You can now check the respository of the container registry and verify that your docker image is available.

az acr repository show --name acraz204lab05 --image ipcheck

Now in the final post we will deploy a container from our image.

Leave a Reply