Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# github.com/moby/moby v28.0.2+incompatible
# github.com/moby/buildkit v0.20.1
# github.com/docker/buildx v0.22.0
# github.com/moby/buildkit v0.21.0
# github.com/docker/buildx v0.23.0
# github.com/docker/cli v28.0.4+incompatible
# github.com/docker/compose/v2 v2.35.0
# github.com/docker/scout-cli v1.15.0
16 changes: 16 additions & 0 deletions content/reference/cli/docker/buildx/history/export.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
datafolder: buildx
datafile: docker_buildx_history_export

Check failure on line 3 in content/reference/cli/docker/buildx/history/export.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'docker_buildx_history_export'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'docker_buildx_history_export'?", "location": {"path": "content/reference/cli/docker/buildx/history/export.md", "range": {"start": {"line": 3, "column": 11}}}, "severity": "ERROR"}
title: docker buildx history export
layout: cli

Check failure on line 5 in content/reference/cli/docker/buildx/history/export.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'cli'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'cli'?", "location": {"path": "content/reference/cli/docker/buildx/history/export.md", "range": {"start": {"line": 5, "column": 9}}}, "severity": "ERROR"}
aliases:
- /engine/reference/commandline/buildx_history_export/
---

<!--
This page is automatically generated from Docker's source code. If you want to
suggest a change to the text that appears here, open a ticket or pull request
in the source repository on GitHub:

https://github.com/docker/buildx
-->
2 changes: 1 addition & 1 deletion data/buildx/docker_buildx_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1433,7 +1433,7 @@ examples: |-
###### `type=file` usage

In the following example, `type=file` is automatically detected because no
environment variable mathing `aws` (the ID) is set.
environment variable matching `aws` (the ID) is set.

```console
$ docker buildx build --secret id=aws,src=$HOME/.aws/credentials .
Expand Down
2 changes: 2 additions & 0 deletions data/buildx/docker_buildx_history.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ usage: docker buildx history
pname: docker buildx
plink: docker_buildx.yaml
cname:
- docker buildx history export
- docker buildx history import
- docker buildx history inspect
- docker buildx history logs
Expand All @@ -13,6 +14,7 @@ cname:
- docker buildx history rm
- docker buildx history trace
clink:
- docker_buildx_history_export.yaml
- docker_buildx_history_import.yaml
- docker_buildx_history_inspect.yaml
- docker_buildx_history_logs.yaml
Expand Down
55 changes: 55 additions & 0 deletions data/buildx/docker_buildx_history_export.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
command: docker buildx history export
short: Export a build into Docker Desktop bundle
long: Export a build into Docker Desktop bundle
usage: docker buildx history export [OPTIONS] [REF]
pname: docker buildx history
plink: docker_buildx_history.yaml
options:
- option: all
value_type: bool
default_value: "false"
description: Export all records for the builder
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
- option: output
shorthand: o
value_type: string
description: Output file path
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
inherited_options:
- option: builder
value_type: string
description: Override the configured builder instance
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
- option: debug
shorthand: D
value_type: bool
default_value: "false"
description: Enable debug logging
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false

20 changes: 20 additions & 0 deletions data/buildx/docker_buildx_history_ls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ usage: docker buildx history ls
pname: docker buildx history
plink: docker_buildx_history.yaml
options:
- option: filter
value_type: stringArray
default_value: '[]'
description: Provide filter values (e.g., `status=error`)
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
- option: format
value_type: string
default_value: table
Expand All @@ -15,6 +25,16 @@ options:
experimentalcli: false
kubernetes: false
swarm: false
- option: local
value_type: bool
default_value: "false"
description: List records for current repository only
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
- option: no-trunc
value_type: bool
default_value: "false"
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ go 1.23.8
toolchain go1.24.1

require (
github.com/docker/buildx v0.22.0 // indirect
github.com/docker/buildx v0.23.0 // indirect
github.com/docker/cli v28.0.4+incompatible // indirect
github.com/docker/compose/v2 v2.35.0 // indirect
github.com/docker/scout-cli v1.15.0 // indirect
github.com/moby/buildkit v0.20.1 // indirect
github.com/moby/buildkit v0.21.0 // indirect
github.com/moby/moby v28.0.2+incompatible // indirect
)

replace (
github.com/docker/buildx => github.com/docker/buildx v0.22.0
github.com/docker/buildx => github.com/docker/buildx v0.23.0
github.com/docker/cli => github.com/docker/cli v28.0.2+incompatible
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.35.0
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ github.com/docker/buildx v0.21.3 h1:LEmhk3D9WOboMeC+hlfOUnB1jylXcDfGHjqAL7Tvwks=
github.com/docker/buildx v0.21.3/go.mod h1:8V4UMnlKsaGYwz83BygmIbJIFEAYGHT6KAv8akDZmqo=
github.com/docker/buildx v0.22.0 h1:pGTcGZa+kxpYUlM/6ACsp1hXhkEDulz++RNXPdE8Afk=
github.com/docker/buildx v0.22.0/go.mod h1:ThbnUe4kNiStlq6cLXruElyEdSTdPL3k/QerNUmPvHE=
github.com/docker/buildx v0.23.0 h1:qoYhuWyZ6PVCrWbkxClLzBWDBCUkyFK6Chjzg6nU+V8=
github.com/docker/buildx v0.23.0/go.mod h1:y/6Zf/y3Bf0zTWqgg8PuNFATcqnuhFmQuNf4VyrnPtg=
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=
Expand Down