Merge pull request #16731 from docker-tools-robot/dispatch/buildx-ref-v0.10.3

Update buildx reference to v0.10.3
This commit is contained in:
Justin Chadwell 2023-02-17 10:44:43 +00:00 committed by GitHub
commit 11c2250d5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 4 deletions

View File

@ -519,6 +519,9 @@ examples: |-
Use `--attest=type=provenance` to generate provenance for an image at
build-time. Alternatively, you can use the [`--provenance` shorthand](#provenance).
By default, a minimal provenance attestation will be created for the build
result, which will only be attached for images pushed to registries.
For more information, see [here](/build/attestations/slsa-provenance/).
### Allow extra privileged entitlement (--allow) {#allow}
@ -908,8 +911,20 @@ examples: |-
### Create provenance attestations (--provenance) {#provenance}
Shorthand for [`--attest=type=provenance`](#attest). Enables provenance
attestations for the build result.
Shorthand for [`--attest=type=provenance`](#attest), used to configure
provenance attestations for the build result. For example,
`--provenance=mode=max` can be used as an abbreviation for
`--attest=type=provenance,mode=max`.
Additionally, `--provenance` can be used with boolean values to broadly enable
or disable provenance attestations. For example, `--provenance=false` can be
used to disable all provenance attestations, while `--provenance=true` can be
used to enable all provenance attestations.
By default, a minimal provenance attestation will be created for the build
result, which will only be attached for images pushed to registries.
For more information, see [here](/build/attestations/slsa-provenance/).
### Push the build result to a registry (--push) {#push}
@ -918,8 +933,16 @@ examples: |-
### Create SBOM attestations (--sbom) {#sbom}
Shorthand for [`--attest=type=sbom`](#attest). Enables SBOM attestations for
the build result.
Shorthand for [`--attest=type=sbom`](#attest), used to configure SBOM
attestations for the build result. For example,
`--sbom=generator=<user>/<generator-image>` can be used as an abbreviation for
`--attest=type=sbom,generator=<user>/<generator-image>`.
Additionally, `--sbom` can be used with boolean values to broadly enable or
disable SBOM attestations. For example, `--sbom=false` can be used to disable
all SBOM attestations.
For more information, see [here](/build/attestations/sbom/).
### Secret to expose to the build (--secret) {#secret}