Registry guide

Download Images from Azure Container Registry

Export ACR images online from any OS in the browser (Windows, macOS, Linux, ChromeOS, mobile). Anonymous pulls work when enabled.

Base URL https://containerdl.com

ACR export ready

ACR image references

Use myregistry.azurecr.io/repo:tag references.

USB and offline transfer

Export TAR files and move them to air-gapped servers.

No local tooling

Use any browser on Windows, macOS, Linux, or mobile without Docker Desktop.

How it works

  1. Paste your ACR image reference (anonymous pull if enabled).
  2. Export to TAR or ZIP and download.
  3. Automate with:
    Bearer token Authorization: Bearer <key>

Example

Export an ACR image

curl
curl -X POST https://containerdl.com/v1/exports \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdl_live_xxx" \
  -d '{"image":"myregistry.azurecr.io/hello-world:latest"}'
  • Enable anonymous pull on ACR for public access.
  • Private registry auth is supported only for GHCR and Docker Hub today.

Common use cases

FAQs

Does this work with private ACR?

No. Private registry auth is supported only for GHCR and Docker Hub today.

How do I format the image reference?

Use {registry}.azurecr.io/repository:tag.

Do you store credentials?

No. Credentials are never stored or logged.

Related guides