Docker Hub Integration Now Available
Cloudflare Containers has expanded its image support to include Docker Hub, eliminating the need to manually push images to Cloudflare Registry before deployment. This streamlines the development workflow and gives developers more flexibility in choosing their container sources.
How to Use Docker Hub Images
You can now reference Docker Hub images directly in your Wrangler configuration using fully qualified image references:
wrangler.toml:
[[containers]]
image = "docker.io/<NAMESPACE>/<REPOSITORY>:<TAG>"
wrangler.jsonc:
{
"containers": [
{
"image": "docker.io/<NAMESPACE>/<REPOSITORY>:<TAG>"
}
]
}
Private Image Support
The platform also supports private Docker Hub images. Developers can configure credentials through the Image Management documentation to authenticate with private registries.
What This Means for Developers
- Simpler workflows: Deploy Docker Hub images directly without intermediate registry steps
- Cost reduction: Eliminate extra steps in your CI/CD pipeline
- Flexibility: Use community images, official images, or your own Docker Hub repositories
- Compatibility: Works with both public and private Docker Hub registries
For detailed configuration instructions and private image setup, refer to the Image Management documentation.antml:parameter>