azure-container-registry-cli
Manage Azure Container Registry via the az acr CLI including registries, images, cloud builds, ACR Tasks, authentication, tokens, geo-replication, and networking. Use when working with ACR, az acr commands, pushing/importing/purging container images in Azure, or when the user mentions Azure Container Registry.
npx skills add github/awesome-copilot --skill azure-container-registry-cli --agent copilot
Same command for any agent — swap --agent for claude-code, codex, cursor.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Azure Container Registry CLI Manage Azure Container Registry (ACR) resources using the `az acr` command group of the Azure CLI. **CLI:** `az acr` ships with core Azure CLI — no extension required (the `acrtransfer` extension is only needed for export/import pipelines). ## Prerequisites ```bash # Install Azure CLI brew install azure-cli # macOS curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash # Linux winget install Microsoft.AzureCLI # Windows # Sign in and select subscription az login az account set --subscription {subscription-id} ``` ## Quick Start ```bash # Create a registry (SKU: Basic | Standard | Premium) az acr create --resource-group {rg} --name {registry} --sku Standard # Authenticate Docker/Podman against the registry az acr login --name {registry} # Build and push in the cloud — no local Docker needed az acr build --registry {registry} --image app:v1 . # Copy an image from another registry without pull/push az acr import --name {registry} --source mcr.microsoft.com/hello-world:latest # List repositories and tags az acr repository list --name {registry} --output table az acr repository show-tags --name {registry} --repository app --orderby time_desc # Diagnose reg
- Prerequisites
- Quick Start
- Key Principles
- CLI Structure
- Reference Files
Install Azure CLI
brew install azure-cli # macOS
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash # Linux
winget install Microsoft.AzureCLI # Windows
Sign in and select subscription
az login
az account set --subscription {subscription-id}
Create a registry (SKU: Basic | Standard | Premium)
az acr create --resource-group {rg} --name {registry} --sku Standard
Authenticate Docker/Podman against the registryWhat does the azure-container-registry-cli skill do?
Manage Azure Container Registry via the az acr CLI including registries, images, cloud builds, ACR Tasks, authentication, tokens, geo-replication, and networking. Use when working with ACR, az acr commands, pushing/importing/purging container images in Azure, or when the user mentions Azure Container Registry.
How do I install it?
Run `npx skills add github/awesome-copilot --skill azure-container-registry-cli --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.