Create an Azure Container Registry using the Azure CLI
Published in
1 min readNov 22, 2018
First things first, login az login
and verify that you are in the right subscription az account show --output table
.. and create a resource group az group create -n learn
Now, create a new container registry az acr -n myregistry -g learn --sku Basic
, this should create a registry with login server myregistry.azurecr.io
.