You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: src/content/docs/containers/platform-details/limits.mdx
+14-7Lines changed: 14 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,16 +8,23 @@ sidebar:
8
8
## Instance Types
9
9
10
10
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:
12
12
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 |
18
21
19
22
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.
20
23
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
+
21
28
## Limits
22
29
23
30
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:
30
37
| Image size | Same as [instance disk space](#instance-types)|
31
38
| Total image storage per account | 50 GB [^1]|
32
39
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.
- 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,
990
990
the see [instance types documentation](/containers/platform-details#instance-types).
991
991
992
992
- To specify a custom instance type, see [here](#custom-instance-types).
@@ -996,7 +996,7 @@ The following options are available:
996
996
request to run a container than this number, the container request will error. You may have more Durable Objects
997
997
than this number over a longer time period, but you may not have more concurrently.
998
998
999
-
- Defaults to 1.
999
+
- Defaults to 1.
1000
1000
1001
1001
- 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.
1002
1002
@@ -1028,7 +1028,7 @@ The following options are available:
1028
1028
class_name = "MyContainer"
1029
1029
image = "./Dockerfile"
1030
1030
max_instances = 10
1031
-
instance_type = "basic"# Optional, defaults to "dev"
1031
+
instance_type = "basic"# Optional, defaults to "lite"
1032
1032
image_vars = { FOO = "BAR" }
1033
1033
1034
1034
[[durable_objects.bindings]]
@@ -1433,4 +1433,4 @@ A common example of using a redirected configuration is where a custom build too
0 commit comments