Original text is not available for public display.
Containers - Docker-in-Docker support added to Containers and Sandboxes
Cloudflare Developer Platform Changelog · 2026-02-17
Related items
Containers - Easily connect Containers and Sandboxes to Workers
Containers and Sandboxes now support connecting directly to Workers over HTTP. This allows you to call Workers functions and bindings , like KV or R2 , from within the container at specific hostnames. Run Worker code Define an outbound handler to capture any HTTP request or use outboundByHost to capture requests to...
Containers - New CPU Pricing for Containers and Sandboxes
Containers and Sandboxes pricing for CPU time is now based on active usage only, instead of provisioned resources. This means that you now pay less for Containers and Sandboxes. An Example Before and After Imagine running the standard-2 instance type for one hour, which can use up to 1 vCPU, but on average you use o...
Containers - Containers and Sandboxes are now generally available
Cloudflare Containers and Sandboxes are now generally available. Containers let you run more workloads on the Workers platform, including resource-intensive applications, different languages, and CLI tools that need full Linux environments. Since the initial launch of Containers, there have been significant improvem...
Containers - Use Docker Hub images with Containers
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...
Workers - Support for Node.js DNS, Net, and Timer APIs in Workers
When using a Worker with the nodejscompat compatibility flag enabled, you can now use the following Node.js APIs: node:net node:dns node:timers node:net You can use node:net to create a direct connection to servers via a TCP sockets with net.Socket . JavaScript import net from "node:net" ; const exampleIP = "127.0.0...
Containers, Agents - Secure credential injection and dynamic egress policies for Sandboxes
Outbound Workers for Sandboxes and Containers now support zero-trust credential injection, TLS interception, allow/deny lists, and dynamic per-instance egress policies. These features give platforms running agentic workloads full control over what leaves the sandbox, without exposing secrets to untrusted workloads,...