Update documentation to include BuildArg key

Signed-off-by: givensuman <givensuman@duck.com>
This commit is contained in:
givensuman
2025-10-08 13:31:30 -04:00
parent 196be4b813
commit a696f8bccb

View File

@@ -1708,6 +1708,7 @@ Valid options for `[Build]` are listed below:
| Annotation=annotation=value | --annotation=annotation=value |
| Arch=aarch64 | --arch=aarch64 |
| AuthFile=/etc/registry/auth\.json | --authfile=/etc/registry/auth\.json |
| BuildArg=foo=bar | --build-arg foo=bar |
| ContainersConfModule=/etc/nvd\.conf | --module=/etc/nvd\.conf |
| DNS=192.168.55.1 | --dns=192.168.55.1 |
| DNSOption=ndots:1 | --dns-option=ndots:1 |
@@ -1750,6 +1751,14 @@ Path of the authentication file.
This is equivalent to the `--authfile` option of `podman build`.
### `BuildArg=`
Specifies a build argument and its value in the same way environment variables are
(e.g. env=*value*), but which is not added to environment variable list in the
resulting image's configuration. Can be listed multiple times.
This is equivalent to the `--build-arg` option of `podman build`.
### `ContainersConfModule=`
Load the specified containers.conf(5) module. Equivalent to the Podman `--module` option.