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/NAMESPACE/REPOSITOR...
Containers - Use Docker Hub images with Containers
Cloudflare Developer Platform Changelog · 2026-03-24
Related items
Containers - List Container instances with `wrangler containers instances`
A new wrangler containers instances command lists all instances for a given Container application. This mirrors the instances view in the Cloudflare dashboard. The command displays each instance's ID, name, state, location, version, and creation time: wrangler containers instances APPLICATIONID Use the --json flag f...
Containers - Docker-in-Docker support added to Containers and Sandboxes
Sandboxes and Containers now support running Docker for "Docker-in-Docker" setups. This is particularly useful when your end users or agents want to run a full sandboxed development environment. This allows you to: Develop containerized applications with your Sandbox Run isolated test environments for images Build c...
Containers - Run more Containers with higher resource limits
You can now run more Containers concurrently with higher limits on CPU, memory, and disk. Limit New Limit Previous Limit Memory for concurrent live Container instances 400GiB 40GiB vCPU for concurrent live Container instances 100 20 Disk for concurrent live Container instances 2TB 100GB You can now run 1000 instance...
Containers - Run 15x more Containers with higher resource limits
You can now run more Containers concurrently with significantly higher limits on memory, vCPU, and disk. Limit Previous Limit New Limit Memory for concurrent live Container instances 400GiB 6TiB vCPU for concurrent live Container instances 100 1,500 Disk for concurrent live Container instances 2TB 30TB This 15x incr...
Containers - Larger Container instance types
New instance types provide up to 4 vCPU, 12 GiB of memory, and 20 GB of disk per container instance. Instance Type vCPU Memory Disk lite 1/16 256 MiB 2 GB basic 1/4 1 GiB 4 GB standard-1 1/2 4 GiB 8 GB standard-2 1 6 GiB 12 GB standard-3 2 8 GiB 16 GB standard-4 4 12 GiB 20 GB The dev and standard instance types are...
Containers, R2 - Mount R2 buckets in Containers
Containers now support mounting R2 buckets as FUSE (Filesystem in Userspace) volumes, allowing applications to interact with R2 using standard filesystem operations. Common use cases include: Bootstrapping containers with datasets, models, or dependencies for sandboxes and agent environments Persisting user configur...