mirror of https://github.com/docker/docs.git
vendor: github.com/docker/buildx 37b7ad1
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
parent
c867a95b4a
commit
9074503b2a
|
|
@ -1,6 +1,6 @@
|
|||
# github.com/moby/moby v25.0.3-0.20240203133757-341a7978a541+incompatible
|
||||
# github.com/moby/buildkit v0.13.0
|
||||
# github.com/docker/buildx v0.13.0
|
||||
# github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2
|
||||
# github.com/docker/scout-cli v1.4.1
|
||||
# github.com/docker/cli v26.0.0-rc1+incompatible
|
||||
# github.com/docker/compose/v2 v2.24.6
|
||||
|
|
|
|||
|
|
@ -611,7 +611,7 @@ examples: |-
|
|||
|
||||
- `network.host` - Allows executions with host networking.
|
||||
- `security.insecure` - Allows executions without sandbox. See
|
||||
[related Dockerfile extensions](/reference/dockerfile/#run---securitysandbox).
|
||||
[related Dockerfile extensions](/reference/dockerfile/#run---security).
|
||||
|
||||
For entitlements to be enabled, the BuildKit daemon also needs to allow them
|
||||
with `--allow-insecure-entitlement` (see [`create --buildkitd-flags`](/reference/cli/docker/buildx/create/#buildkitd-flags)).
|
||||
|
|
|
|||
4
go.mod
4
go.mod
|
|
@ -5,7 +5,7 @@ go 1.21
|
|||
toolchain go1.21.1
|
||||
|
||||
require (
|
||||
github.com/docker/buildx v0.13.0 // indirect
|
||||
github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2 // indirect
|
||||
github.com/docker/cli v26.0.0-rc1+incompatible // indirect
|
||||
github.com/docker/compose/v2 v2.24.6 // indirect
|
||||
github.com/docker/scout-cli v1.4.1 // indirect
|
||||
|
|
@ -14,7 +14,7 @@ require (
|
|||
)
|
||||
|
||||
replace (
|
||||
github.com/docker/buildx => github.com/docker/buildx v0.13.0
|
||||
github.com/docker/buildx => github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2
|
||||
github.com/docker/cli => github.com/docker/cli v25.0.4-0.20240221083216-f67e569a8fb9+incompatible
|
||||
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.24.6
|
||||
github.com/docker/scout-cli => github.com/docker/scout-cli v1.4.1
|
||||
|
|
|
|||
2
go.sum
2
go.sum
|
|
@ -62,6 +62,8 @@ github.com/docker/buildx v0.12.2-0.20240220084849-89154c7d3303 h1:J34paheV5gSKez
|
|||
github.com/docker/buildx v0.12.2-0.20240220084849-89154c7d3303/go.mod h1:OoLv85M5U/p8TWyCINtEilyy0A0XTN9COQgmuE0bWhw=
|
||||
github.com/docker/buildx v0.13.0 h1:nNbkgaxsWEZPX1P8yXN6dibAv7ADRMVqi0aohDFhLJY=
|
||||
github.com/docker/buildx v0.13.0/go.mod h1:f2n6vggoX4sNNZ0XoRZ0Wtv6J1/rbDTabgdHtpW9NNM=
|
||||
github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2 h1:kuFvsZyZCYqxWBc3O7B95wHAoYKheuZYztIHstwnF7Y=
|
||||
github.com/docker/buildx v0.13.1-0.20240307093612-37b7ad1465d2/go.mod h1:f2n6vggoX4sNNZ0XoRZ0Wtv6J1/rbDTabgdHtpW9NNM=
|
||||
github.com/docker/cli v24.0.2+incompatible h1:QdqR7znue1mtkXIJ+ruQMGQhpw2JzMJLRXp6zpzF6tM=
|
||||
github.com/docker/cli v24.0.2+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
|
||||
github.com/docker/cli v24.0.4+incompatible h1:Y3bYF9ekNTm2VFz5U/0BlMdJy73D+Y1iAAZ8l63Ydzw=
|
||||
|
|
|
|||
Loading…
Reference in New Issue