Registry guide

Download Images from Docker Hub

Pull public Docker Hub images and get a tarball instantly without Docker.

Base URL https://containerdl.com

Docker Hub focused

Public repos

Export images like nginx, redis, and postgres in minutes.

Private repos (Light/Pro)

Use a Docker Hub access token for private images.

Ready to load

TAR outputs work with docker load everywhere.

How it works

  1. Sign in and enter your Docker Hub image.
  2. Export and download a TAR.
  3. For private repos, include registry_auth with your token.

Example

Export a public Docker Hub image

curl
curl -X POST https://containerdl.com/v1/exports \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer cdl_live_xxx" \
  -d '{"image":"nginx:latest"}'
  • Use a Docker Hub access token for private images.
  • Light/Pro is required for private registry auth.

Common use cases

FAQs

Do I need docker login?

No for public images. Private images need a Docker Hub access token.

Are Docker Hub rate limits enforced?

Yes. Exports follow Docker Hub rate limits for public pulls.

Can I export private Docker Hub images?

Yes with Light/Pro and a read-only access token.

Related guides