@@ -14,23 +14,14 @@ wrangler containers build [PATH] [OPTIONS]
14
14
15
15
- ` PATH ` <Type text = " string" /> <MetaInfo text = " optional" />
16
16
- Path for the directory containing the Dockerfile to build.
17
-
18
- #### Options:
19
-
20
17
- ` -t, --tag ` <Type text = " string" /> <MetaInfo text = " required" />
21
18
- Name and optionally a tag (format: "name:tag").
22
19
- ` --path-to-docker ` <Type text = " string" /> <MetaInfo text = " optional" />
23
- - Path to your docker binary if it's not on $PATH.
20
+ - Path to your docker binary if it's not on ` $PATH ` .
24
21
- Default: "docker"
25
22
- ` -p, --push ` <Type text = " boolean" /> <MetaInfo text = " optional" />
26
23
- Push the built image to Cloudflare's managed registry.
27
24
- Default: false
28
- - ` --platform ` <Type text = " string" /> <MetaInfo text = " optional" />
29
- - Platform to build for. Defaults to the architecture supported by Workers (linux/amd64).
30
- - Default: "linux/amd64"
31
- - ` --json ` <Type text = " boolean" /> <MetaInfo text = " optional" />
32
- - Return output as clean JSON.
33
- - Default: false
34
25
35
26
<AnchorHeading title = " `delete`" slug = " containers-delete" depth = { 3 } />
36
27
@@ -42,10 +33,6 @@ wrangler containers delete <CONTAINER_ID> [OPTIONS]
42
33
43
34
- ` CONTAINER_ID ` <Type text = " string" /> <MetaInfo text = " required" />
44
35
- The ID of the Container to delete.
45
- - ` -y, --skip-confirmation ` <Type text = " boolean" /> <MetaInfo text = " optional" />
46
- - Skip deletion confirmation prompt.
47
- - ` --json ` <Type text = " boolean" /> <MetaInfo text = " optional" />
48
- - Return output as JSON rather than a table.
49
36
50
37
<AnchorHeading title = " `images`" slug = " containers-images" depth = { 3 } />
51
38
@@ -59,8 +46,6 @@ List images in your containers registry.
59
46
wrangler containers images list [OPTIONS]
60
47
```
61
48
62
- #### Options:
63
-
64
49
- ` --filter ` <Type text = " string" /> <MetaInfo text = " optional" />
65
50
- Regex to filter results.
66
51
- ` --json ` <Type text = " boolean" /> <MetaInfo text = " optional" />
@@ -80,13 +65,7 @@ wrangler containers images delete [IMAGE] [OPTIONS]
80
65
```
81
66
82
67
- ` IMAGE ` <Type text = " string" /> <MetaInfo text = " required" />
83
- - Image to delete.
84
-
85
- #### Options:
86
-
87
- - ` --json ` <Type text = " boolean" /> <MetaInfo text = " optional" />
88
- - Return output as clean JSON.
89
- - Default: false
68
+ - Image to delete of the form ` IMAGE:TAG `
90
69
91
70
<AnchorHeading title = " `info`" slug = " containers-info" depth = { 3 } />
92
71
@@ -98,8 +77,6 @@ wrangler containers info <CONTAINER_ID> [OPTIONS]
98
77
99
78
- ` CONTAINER_ID ` <Type text = " string" /> <MetaInfo text = " required" />
100
79
- The ID of the Container to get information about.
101
- - ` --json ` <Type text = " boolean" /> <MetaInfo text = " optional" />
102
- - Return output as JSON rather than a table.
103
80
104
81
<AnchorHeading title = " `list`" slug = " containers-list" depth = { 3 } />
105
82
@@ -109,9 +86,6 @@ List the Containers in your account.
109
86
wrangler containers list [OPTIONS]
110
87
```
111
88
112
- - ` --json ` <Type text = " boolean" /> <MetaInfo text = " optional" />
113
- - Return output as JSON rather than a table.
114
-
115
89
<AnchorHeading title = " `push`" slug = " containers-push" depth = { 3 } />
116
90
117
91
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]
122
96
123
97
- ` TAG ` <Type text = " string" /> <MetaInfo text = " required" />
124
98
- The name and tag of the container image to push.
125
-
126
- #### Options:
127
-
128
99
- ` --path-to-docker ` <Type text = " string" /> <MetaInfo text = " optional" />
129
- - Path to your docker binary if it's not on $PATH.
100
+ - Path to your docker binary if it's not on ` $PATH ` .
130
101
- Default: "docker"
131
- - ` --json ` <Type text = " boolean" /> <MetaInfo text = " optional" />
132
- - Return output as clean JSON.
133
- - Default: false
0 commit comments