---
title: Use Docker Hub images with Containers
description: Use public and private Docker Hub images
image: https://edgetunnel-b2h.pages.dev/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://edgetunnel-b2h.pages.dev/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://edgetunnel-b2h.pages.dev/changelog/rss/index.xml) [ View RSS feeds ](https://edgetunnel-b2h.pages.dev/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://edgetunnel-b2h.pages.dev/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://edgetunnel-b2h.pages.dev/changelog/) 

## Use Docker Hub images with Containers

Mar 24, 2026 

[ Containers ](https://edgetunnel-b2h.pages.dev/containers/) 

Containers now support [Docker Hub ↗](https://hub.docker.com/) images. You can use a fully qualified Docker Hub image reference in your [Wrangler configuration ↗](https://edgetunnel-b2h.pages.dev/workers/wrangler/configuration/#containers) instead of first pushing the image to Cloudflare Registry.

* [  wrangler.jsonc ](#tab-panel-2791)
* [  wrangler.toml ](#tab-panel-2792)

**JSONC**

```jsonc
{
  "containers": [
    {
      // Example: docker.io/cloudflare/sandbox:0.7.18
      "image": "docker.io/<NAMESPACE>/<REPOSITORY>:<TAG>",
    },
  ],
}
```

**TOML**

```toml
[[containers]]
image = "docker.io/<NAMESPACE>/<REPOSITORY>:<TAG>"
```

Containers also support private Docker Hub images. To configure credentials, refer to [Use private Docker Hub images](https://edgetunnel-b2h.pages.dev/containers/platform-details/image-management/#use-private-docker-hub-images).

For more information, refer to [Image management](https://edgetunnel-b2h.pages.dev/containers/platform-details/image-management/).

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://edgetunnel-b2h.pages.dev/changelog/post/2026-03-24-docker-hub-images/#page","headline":"Use Docker Hub images with Containers · Changelog","description":"Use public and private Docker Hub images","url":"https://edgetunnel-b2h.pages.dev/changelog/post/2026-03-24-docker-hub-images/","inLanguage":"en","image":"https://edgetunnel-b2h.pages.dev/changelog-preview.png","dateModified":"2026-03-24","datePublished":"2026-03-24","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://edgetunnel-b2h.pages.dev/#website","name":"Cloudflare Docs","url":"https://edgetunnel-b2h.pages.dev/"}}
```
