Azure Container Registry

Definition

Microsoft's private Docker registry for storing and managing container images. Like having a secure private library for your containerized applications.

Use Cases

Provider Equivalents

Frequently Asked Questions

What's the difference between Azure Container Registry and Docker Hub?
Docker Hub is a public registry (with optional private repositories) used broadly across the internet. Azure Container Registry is a private, Azure-managed registry designed for enterprise use, with tight integration into Azure identity (Azure AD), networking (private endpoints), and services like AKS and Azure DevOps.
When should I use Azure Container Registry?
Use ACR when you need a private place to store container images for Azure deployments (especially AKS), want Azure AD-based access control, need to keep images inside your organization’s network using private endpoints, or want to integrate image builds and promotions into CI/CD pipelines.
How much does Azure Container Registry cost?
Pricing depends on the ACR tier (for example, Basic/Standard/Premium), the amount of storage used by your images, and data transfer (egress) when images are pulled across regions or out to the internet. Premium adds features like geo-replication and private endpoints, which can increase cost but may reduce latency and improve security.

Category: containers

Difficulty: intermediate

Related Terms

See Also