---
title: Use Docker Hub images with Containers
description: Use public and private Docker Hub images
image: https://developers.cloudflare.com/changelog-preview.png
---

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Use Docker Hub images with Containers

Mar 24, 2026 

[ Containers ](https://developers.cloudflare.com/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://developers.cloudflare.com/workers/wrangler/configuration/#containers) instead of first pushing the image to Cloudflare Registry.

* [  wrangler.jsonc ](#tab-panel-1424)
* [  wrangler.toml ](#tab-panel-1425)

JSONC

```

{

  "containers": [

    {

      // Example: docker.io/cloudflare/sandbox:0.7.18

      "image": "docker.io/<NAMESPACE>/<REPOSITORY>:<TAG>",

    },

  ],

}


```

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://developers.cloudflare.com/containers/platform-details/image-management/#use-private-docker-hub-images).

For more information, refer to [Image management](https://developers.cloudflare.com/containers/platform-details/image-management/).