Skip to content

Commit b20c01c

Browse files
committed
Fixes two minor container issues
1 parent 8b92d72 commit b20c01c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/content/docs/containers/image-management.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { WranglerConfig, PackageManagers } from "~/components";
1111

1212
## Pushing images during `wrangler deploy`
1313

14-
When running `wrangler deploy`, if you set the `image` attribute in you [Wranlger configuration](/workers/wrangler/configuration/#containers)
14+
When running `wrangler deploy`, if you set the `image` attribute in you [Wrangler configuration](/workers/wrangler/configuration/#containers)
1515
file to a path, wrangler will build your container image locally using Docker, then push it to a registry run by Cloudflare.
1616
This registry is integrated with your Cloudflare account and is backed by [R2](/r2/). All authentication is handled automatically by
1717
Cloudflare both when pushing and pulling images.
@@ -46,7 +46,11 @@ If you wish to use a pre-built image, first, push it to the Cloudflare Registry:
4646

4747
Wrangler provides a command to push images to the Cloudflare Registry:
4848

49-
<PackageManagers type="exec" pkg="wrangler" args="push <image>:<tag>" />
49+
<PackageManagers
50+
type="exec"
51+
pkg="wrangler"
52+
args="containers push <image>:<tag>"
53+
/>
5054

5155
Additionally, you can use the `-p` flag with `wrangler containers build` to build and push an image in one step:
5256

0 commit comments

Comments
 (0)