Original text is not available for public display.
Containers - Custom container instance types now available for all users
Cloudflare Developer Platform Changelog · 2026-01-05
Related items
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 - 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 - SSH into running Container instances
You can now SSH into running Container instances using Wrangler. This is useful for debugging, inspecting running processes, or executing one-off commands inside a Container. To connect, enable wranglerssh in your Container configuration and add your ssh-ed25519 public key to authorizedkeys : wrangler.jsonc { " cont...
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 - SSH through Wrangler is now enabled by default for Containers
SSH through Wrangler is now enabled by default for Containers . Previously, you had to set ssh.enabled to true in your Container configuration before you could connect. This change does not expose any publicly accessible ports on your Container. The SSH service is reachable only through wrangler containers ssh , whi...
Workers - `wrangler types` now generates types for all environments
The wrangler types command now generates TypeScript types for bindings from all environments defined in your Wrangler configuration file by default. Previously, wrangler types only generated types for bindings in the top-level configuration (or a single environment when using the --env flag). This meant that if you...