author | ms.service | ms.topic | ms.date | ms.author |
---|---|---|---|---|
dlepow |
container-registry |
include |
02/24/2021 |
danlep |
Use the Azure CLI to create an Azure container registry.
If needed, create a resource group for the registry by using the az group create command. This example creates the resource group in the East US region.
az group create --name myResourceGroup --location eastus
Use the az acr create command to create a container registry in the Basic service tier. Specify a globally unique registry name.
az acr create --resource-group myResourceGroup \
--name myregistry --sku Basic