Skip to content

Commit 55e4850

Browse files
Apply suggestions from code review
Co-authored-by: Brendan Irvine-Broque <[email protected]>
1 parent 9d673ac commit 55e4850

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

src/content/docs/containers/index.mdx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,18 @@ Enhance your Workers with serverless containers
3333

3434
<Plan type="workers-paid" />
3535

36-
With Containers, you can build applications that integrate Workers with a serverless container runtime.
36+
Run code written in any programming language, built for any runtime, as part of apps built on [Workers](/workers).
3737

3838
Deploy your container image to Region:Earth without worrying about managing infrastructure - just define your
3939
Worker and `wrangler deploy`.
4040

41-
This lets you run:
41+
With Containers you can run:
4242

43-
- Resouce-intensive applications that use more memory, CPU, or disk than standard Workers
43+
- Resource-intensive applications that require multiple vCPUs, large amounts of memory or disk space
4444
- Applications and libraries that require a full filesystem, specific runtime, or Linux-like environment
45-
- Existing applications and tools that have been distributed as images
45+
- Existing applications and tools that have been distributed as container images
4646

47+
Container instances are spun up on-demand and controlled by code you write in your [Worker](/workers). Instead of chaining together API calls or writing Kubernetes operators, you just write JavaScript:
4748
<Tabs>
4849
<TabItem label="Worker Code">
4950
```js
@@ -102,7 +103,8 @@ async fetch(request, env) {
102103
</TabItem>
103104
</Tabs>
104105

105-
See the [Getting Started Guide](/containers/get-started/) to start building with Containers.
106+
107+
<LinkButton variant="primary" href="/containers/get-started/">Get started</LinkButton> <LinkButton variant="secondary" href="https://dash.cloudflare.com/?to=/:account/workers/containers">Containers dashboard</LinkButton>
106108

107109
---
108110

0 commit comments

Comments
 (0)