Containers now support Docker Hub images. You can use a fully qualified Docker Hub image reference in your Wrangler configuration instead of first pushing the image to Cloudflare Registry.
wrangler.jsonc { "containers": [ { // Example: docker.io/cloudflare/sandbox:0.7.18 "image": "docker.io//:", }, ],} wrangler.toml [[containers]]image = "docker.io//:"
Containers also support private Docker Hub images. To configure credentials, refer to Use private Docker Hub images.
For more information, refer to Image management.
Fetched April 4, 2026