diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index cef4ec9c0bfa2eb..97b28327540a274 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -92,6 +92,7 @@
# Developer Platform
/src/content/docs/containers/ @mikenomitch @th0m @cloudflare/pcx-technical-writing @cloudflare/cloudchamber
+/src/content/partials/containers/ @mikenomitch @th0m @cloudflare/pcx-technical-writing @cloudflare/cloudchamber
/src/content/docs/d1/ @elithrar @rozenmd @vy-ton @joshthoward @oxyjun @harshil1712 @cloudflare/pcx-technical-writing
/src/content/release-notes/d1.yaml @elithrar @rozenmd @vy-ton @joshthoward @oxyjun @cloudflare/pcx-technical-writing
/src/content/partials/d1/ @elithrar @rozenmd @vy-ton @joshthoward @oxyjun @harshil1712 @cloudflare/pcx-technical-writing
diff --git a/src/content/docs/containers/platform-details/limits.mdx b/src/content/docs/containers/platform-details/limits.mdx
index e0890e2a70167a2..e31611766ef888f 100644
--- a/src/content/docs/containers/platform-details/limits.mdx
+++ b/src/content/docs/containers/platform-details/limits.mdx
@@ -5,19 +5,14 @@ sidebar:
order: 2
---
+import { Render } from "~/components";
+
## Instance Types
The memory, vCPU, and disk space for Containers are set through predefined instance types.
Six instance types are currently available:
-| 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 |
+
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.
diff --git a/src/content/docs/containers/pricing.mdx b/src/content/docs/containers/pricing.mdx
index 8764044beca0894..07322214904896f 100644
--- a/src/content/docs/containers/pricing.mdx
+++ b/src/content/docs/containers/pricing.mdx
@@ -5,6 +5,8 @@ sidebar:
order: 11
---
+import { Render } from "~/components";
+
## vCPU, Memory and Disk
Containers are billed for every 10ms that they are actively running at the following rates, with included monthly usage as part of the $5 USD per month [Workers Paid plan](/workers/platform/pricing/):
@@ -20,11 +22,7 @@ You only pay for what you use — charges start when a request is sent to the co
When you add containers to your Worker, you specify an [instance type](/containers/platform-details/#instance-types). The instance type you select will impact your bill — larger instances include more vCPUs, memory and disk, and therefore incur additional usage costs. The following instance types are currently available, and larger instance types are coming soon:
-| Name | Memory | CPU | Disk |
-| -------- | ------- | --------- | ---- |
-| dev | 256 MiB | 1/16 vCPU | 2 GB |
-| basic | 1 GiB | 1/4 vCPU | 4 GB |
-| standard | 4 GiB | 1/2 vCPU | 4 GB |
+
## Network Egress
diff --git a/src/content/partials/containers/instance-types.mdx b/src/content/partials/containers/instance-types.mdx
new file mode 100644
index 000000000000000..705a0f3c5970555
--- /dev/null
+++ b/src/content/partials/containers/instance-types.mdx
@@ -0,0 +1,8 @@
+| 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 |
\ No newline at end of file