Winsmarts.com

Random tech bits

Follow publication

Create an Azure Container Registry using the Azure CLI

--

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.

--

--

Responses (1)