Azure · Developer Tools
Azure Container Registry
Private container registry with tasks and scanning.
Official docsOverview
ACR stores OCI images with geo-replication, image scanning via Defender, and Tasks for in-registry builds.
When to use it
- Container image storage
- Pipeline-driven image promotion across environments
Setup
- Create registry: `az acr create -g qa-rg -n qaacr --sku Standard`.
- Auth: `az acr login -n qaacr`.
How to use
Push
docker push qaacr.azurecr.io/api:1.2.3QA use cases
- Fail pipeline when Defender finds HIGH/CRITICAL vulnerabilities.
