You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prior to this commit, experimental flags were not distinguishable from
regular flags in `--help`
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
flags.BoolVar(&ignoreBool, "squash", false, "Squash newly built layers into a single new layer")
594
593
flags.MarkHidden("squash")
595
594
flags.SetAnnotation("squash", "flag-warn", []string{"experimental flag squash is removed with BuildKit. You should squash inside build using a multi-stage Dockerfile for efficiency."})
flags.StringVar(&controlOptions.ServerConfig, "server-config", "", "Specify buildx server config file for the monitor (used only when launching new server)")
flags.StringVar(&progressMode, "progress", "auto", `Set type of progress output ("auto", "plain", "tty") for the monitor. Use plain to show container output`)
|[`--cgroup-parent`](https://docs.docker.com/engine/reference/commandline/build/#cgroup-parent)|`string`|| Set the parent cgroup for the `RUN` instructions during build |
28
-
|`--detach`||| Detach buildx server (supported only on linux) |
28
+
|`--detach`||| Detach buildx server (supported only on linux) (EXPERIMENTAL)|
29
29
|[`-f`](https://docs.docker.com/engine/reference/commandline/build/#file), [`--file`](https://docs.docker.com/engine/reference/commandline/build/#file)|`string`|| Name of the Dockerfile (default: `PATH/Dockerfile`) |
30
30
|`--iidfile`|`string`|| Write the image ID to the file |
31
31
|`--label`|`stringArray`|| Set metadata for an image |
@@ -36,16 +36,16 @@ Start a build
36
36
|[`--no-cache-filter`](#no-cache-filter)|`stringArray`|| Do not cache specified stages |
|[`--platform`](#platform)|`stringArray`|| Set target platform for build |
39
-
|`--print`|`string`|| Print result of information request (e.g., outline, targets) |
39
+
|`--print`|`string`|| Print result of information request (e.g., outline, targets) (EXPERIMENTAL)|
40
40
|[`--progress`](#progress)|`string`|`auto`| Set type of progress output (`auto`, `plain`, `tty`). Use plain to show container output |
41
41
|[`--provenance`](#provenance)|`string`|| Shorthand for `--attest=type=provenance`|
42
42
|`--pull`||| Always attempt to pull all referenced images |
43
43
|[`--push`](#push)||| Shorthand for `--output=type=registry`|
44
44
|`-q`, `--quiet`||| Suppress the build output and print image ID on success |
45
-
|`--root`|`string`|| Specify root directory of server to connect |
45
+
|`--root`|`string`|| Specify root directory of server to connect (EXPERIMENTAL)|
46
46
|[`--sbom`](#sbom)|`string`|| Shorthand for `--attest=type=sbom`|
47
47
|[`--secret`](#secret)|`stringArray`|| Secret to expose to the build (format: `id=mysecret[,src=/local/secret]`) |
48
-
|`--server-config`|`string`|| Specify buildx server config file (used only when launching new server) |
48
+
|`--server-config`|`string`|| Specify buildx server config file (used only when launching new server) (EXPERIMENTAL)|
49
49
|[`--shm-size`](#shm-size)|`bytes`|`0`| Size of `/dev/shm`|
50
50
|[`--ssh`](#ssh)|`stringArray`|| SSH agent socket or keys to expose to the build (format: `default\|<id>[=<socket>\|<key>[,<key>]]`) |
51
51
|[`-t`](https://docs.docker.com/engine/reference/commandline/build/#tag), [`--tag`](https://docs.docker.com/engine/reference/commandline/build/#tag)|`stringArray`|| Name and optionally a tag (format: `name:tag`) |
0 commit comments