Skip to content

Commit b74f23f

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

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: New Containers instance types
3+
description: New Containers 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.

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)