Skip to content

Commit e102471

Browse files
committed
Add changelog entry for new containers instance types
1 parent 37ffdd6 commit e102471

File tree

3 files changed

+41
-11
lines changed

3 files changed

+41
-11
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Larger Container instance types
3+
description: New Container instance types provide more resources for your container applications
4+
products:
5+
- containers
6+
date: 2025-09-30
7+
---
8+
9+
New instance types provide up to 4 vCPU, 12 GiB of memory, and 20 GB of disk per container instance.
10+
11+
| Instance Type | vCPU | Memory | Disk |
12+
| ------------- | ---- | ------ | ---- |
13+
| lite | 1/16 | 256 MiB | 2 GB |
14+
| basic | 1/4 | 1 GiB | 4 GB |
15+
| standard-1 | 1/2 | 4 GiB | 8 GB |
16+
| standard-2 | 1 | 6 GiB | 12 GB |
17+
| standard-3 | 2 | 8 GiB | 16 GB |
18+
| standard-4 | 4 | 12 GiB | 20 GB |
19+
20+
The `dev` and `standard` instance types are preserved for backward compatibility and are aliases for `lite` and `standard-1`, respectively. The `standard-1` instance type now provides up to 8 GB of disk instead of only 4 GB.
21+
22+
See the [getting started guide](/containers/get-started/) to deploy your first Container,
23+
and the [limits documentation](/containers/platform-details/limits/) for more details on the available instance types and limits.

src/content/docs/containers/platform-details/limits.mdx

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,23 @@ sidebar:
88
## Instance Types
99

1010
The memory, vCPU, and disk space for Containers are set through predefined instance types.
11-
Three instance types are currently available:
11+
Six instance types are currently available:
1212

13-
| Instance Type | Memory | vCPU | Disk |
14-
| ------------- | ------- | ---- | ---- |
15-
| dev | 256 MiB | 1/16 | 2 GB |
16-
| basic | 1 GiB | 1/4 | 4 GB |
17-
| standard | 4 GiB | 1/2 | 4 GB |
13+
| Instance Type | vCPU | Memory | Disk |
14+
| ------------- | ---- | ------ | ---- |
15+
| lite | 1/16 | 256 MiB | 2 GB |
16+
| basic | 1/4 | 1 GiB | 4 GB |
17+
| standard-1 | 1/2 | 4 GiB | 8 GB |
18+
| standard-2 | 1 | 6 GiB | 12 GB |
19+
| standard-3 | 2 | 8 GiB | 16 GB |
20+
| standard-4 | 4 | 12 GiB | 20 GB |
1821

1922
These are specified using the [`instance_type` property](/workers/wrangler/configuration/#containers) in your Worker's Wrangler configuration file. Looking for larger instances? [Give us feedback here](/containers/beta-info/#feedback-wanted) and tell us what size instances you need, and what you want to use them for.
2023

24+
:::note
25+
The `dev` and `standard` instance types are preserved for backward compatibility and are aliases for `lite` and `standard-1`, respectively.
26+
:::
27+
2128
## Limits
2229

2330
While in open beta, the following limits are currently in effect:
@@ -30,4 +37,4 @@ While in open beta, the following limits are currently in effect:
3037
| Image size | Same as [instance disk space](#instance-types) |
3138
| Total image storage per account | 50 GB [^1] |
3239

33-
[^1]: Delete container images with `wrangler containers delete` to free up space. Note that if you delete a container image and then [roll back](/workers/configuration/versions-and-deployments/rollbacks/) your Worker to a previous version, this version may no longer work.
40+
[^1]: Delete container images with `wrangler containers delete` to free up space. Note that if you delete a container image and then [roll back](/workers/configuration/versions-and-deployments/rollbacks/) your Worker to a previous version, this version may no longer work.

src/content/docs/workers/wrangler/configuration.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ The following options are available:
986986

987987
- `instance_type` <Type text="string" /> <MetaInfo text="optional" />
988988
- The instance type of the container. This determines the amount of memory, CPU, and disk given to the container
989-
instance. The current options are `"dev"`, `"basic"`, and `"standard"`. The default is `"dev"`. For more information,
989+
instance. The current options are `"lite"`, `"basic"`, `"standard-1"`, `"standard-2"`, `"standard-3"`, and `"standard-4"`. The default is `"lite"`. For more information,
990990
the see [instance types documentation](/containers/platform-details#instance-types).
991991

992992
- To specify a custom instance type, see [here](#custom-instance-types).
@@ -996,7 +996,7 @@ The following options are available:
996996
request to run a container than this number, the container request will error. You may have more Durable Objects
997997
than this number over a longer time period, but you may not have more concurrently.
998998

999-
- Defaults to 1.
999+
- Defaults to 1.
10001000

10011001
- This value is only enforced when running in production on Cloudflare's network. This limit does not apply during local development, so you may run more instances than specified.
10021002

@@ -1028,7 +1028,7 @@ The following options are available:
10281028
class_name = "MyContainer"
10291029
image = "./Dockerfile"
10301030
max_instances = 10
1031-
instance_type = "basic" # Optional, defaults to "dev"
1031+
instance_type = "basic" # Optional, defaults to "lite"
10321032
image_vars = { FOO = "BAR" }
10331033

10341034
[[durable_objects.bindings]]
@@ -1433,4 +1433,4 @@ A common example of using a redirected configuration is where a custom build too
14331433
{
14341434
"configPath": "../../dist/wrangler.jsonc"
14351435
}
1436-
```
1436+
```

0 commit comments

Comments
 (0)