diff --git a/src/content/partials/workers/wrangler-commands/containers.mdx b/src/content/partials/workers/wrangler-commands/containers.mdx index 6593e874afcca9f..810294d9c5b7284 100644 --- a/src/content/partials/workers/wrangler-commands/containers.mdx +++ b/src/content/partials/workers/wrangler-commands/containers.mdx @@ -14,23 +14,14 @@ wrangler containers build [PATH] [OPTIONS] - `PATH` - Path for the directory containing the Dockerfile to build. - -#### Options: - - `-t, --tag` - Name and optionally a tag (format: "name:tag"). - `--path-to-docker` - - Path to your docker binary if it's not on $PATH. + - Path to your docker binary if it's not on `$PATH`. - Default: "docker" - `-p, --push` - Push the built image to Cloudflare's managed registry. - Default: false -- `--platform` - - Platform to build for. Defaults to the architecture supported by Workers (linux/amd64). - - Default: "linux/amd64" -- `--json` - - Return output as clean JSON. - - Default: false @@ -42,10 +33,6 @@ wrangler containers delete [OPTIONS] - `CONTAINER_ID` - The ID of the Container to delete. -- `-y, --skip-confirmation` - - Skip deletion confirmation prompt. -- `--json` - - Return output as JSON rather than a table. @@ -59,8 +46,6 @@ List images in your containers registry. wrangler containers images list [OPTIONS] ``` -#### Options: - - `--filter` - Regex to filter results. - `--json` @@ -80,13 +65,7 @@ wrangler containers images delete [IMAGE] [OPTIONS] ``` - `IMAGE` - - Image to delete. - -#### Options: - -- `--json` - - Return output as clean JSON. - - Default: false + - Image to delete of the form `IMAGE:TAG` @@ -98,8 +77,6 @@ wrangler containers info [OPTIONS] - `CONTAINER_ID` - The ID of the Container to get information about. -- `--json` - - Return output as JSON rather than a table. @@ -109,9 +86,6 @@ List the Containers in your account. wrangler containers list [OPTIONS] ``` -- `--json` - - Return output as JSON rather than a table. - Push a tagged image to a Cloudflare managed registry, which is automatically integrated with your account. @@ -122,12 +96,6 @@ wrangler containers push [TAG] [OPTIONS] - `TAG` - The name and tag of the container image to push. - -#### Options: - - `--path-to-docker` - - Path to your docker binary if it's not on $PATH. + - Path to your docker binary if it's not on `$PATH`. - Default: "docker" -- `--json` - - Return output as clean JSON. - - Default: false