Skip to content

Commit ed2cde1

Browse files
Apply suggestions from code review
Co-authored-by: ask-bonk[bot] <249159057+ask-bonk[bot]@users.noreply.github.com>
1 parent 52d5d5c commit ed2cde1

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/content/docs/containers/get-started.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ In this guide, we will build and push a container image alongside your Worker co
2323

2424
### Deploy without Docker
2525

26-
If you do not have Docker running locally but want to deploy Worker code changes without rebuilding the container image, pass `--containers-rollout=none` to the deploy command:
26+
If you do not have Docker running locally but want to deploy Worker code changes without rebuilding the container image, pass [`--containers-rollout=none`](/workers/wrangler/commands/#deploy) to the deploy command:
2727

2828
<PackageManagers
2929
type="exec"
3030
pkg="wrangler"
3131
args="deploy --containers-rollout=none"
3232
/>
3333

34-
This skips the container image build and push steps, deploying your Worker code while reusing the existing container image from a previous deployment. You must have deployed the container at least once with Docker before using this option.
34+
This skips the container image build and push steps and deploys your Worker code while reusing the existing container image from a previous deployment. You must have deployed the container at least once with Docker before using this option.
3535

3636
## Deploy your first Container
3737

src/content/docs/sandbox/configuration/wrangler.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ The minimal configuration shown above includes all required settings. For detail
5454

5555
## Deploy without Docker
5656

57-
If you do not have Docker running locally but want to deploy Worker code changes without rebuilding the container image, pass `--containers-rollout=none` to the deploy command:
57+
If you do not have Docker running locally but want to deploy Worker code changes without rebuilding the container image, pass [`--containers-rollout=none`](/workers/wrangler/commands/#deploy) to the deploy command:
5858

5959
<PackageManagers
6060
type="exec"
6161
pkg="wrangler"
6262
args="deploy --containers-rollout=none"
6363
/>
6464

65-
This skips the container image build and push steps, deploying your Worker code while reusing the existing container image from a previous deployment. You must have deployed the container at least once with Docker before using this option.
65+
This skips the container image build and push steps and deploys your Worker code while reusing the existing container image from a previous deployment. You must have deployed the container at least once with Docker before using this option.
6666

6767
## Troubleshooting
6868

src/content/docs/workers/wrangler/commands.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ None of the options for this command are required. Also, many can be set in your
340340
- Specify the [rollout strategy](/containers/faq#how-do-container-updates-and-rollouts-work) for [Containers](/containers) associated with the Worker.
341341
- `gradual` (default) — Rolls out to 10% then 100% of instances.
342342
- `immediate` — Rolls out to 100% of container instances in one step, overriding any configuration in `rollout_step_percentage`. Note that `rollout_active_grace_period`, if configured, still applies.
343-
- `none` — Skips building and pushing a new container image. Use this when you do not have Docker running locally but still want to deploy Worker code changes. The deployment uses the existing container image from a previous deploy.
343+
- `none` — Skips building and pushing a new container image. Use this when you do not have Docker running locally but still want to deploy Worker code changes. The deployment uses the existing container image from a previous deployment.
344344
- `--strict` <Type text="boolean" /> <MetaInfo text="(default: false) optional" />
345345
- Turns on strict mode for the deployment command, meaning that the command will be more defensive and prevent deployments which could introduce potential issues. In particular, this mode prevents deployments if the deployment would potentially override remote settings in non-interactive environments.
346346
- `--tag` <Type text="string" /> <MetaInfo text="optional" />

0 commit comments

Comments
 (0)