Appearance
Fresh
Import a
docker buildx history import
Back
docker buildx history import
Copy as Markdown
Open MarkdownAsk Docs AIClaudeOpen in Claude
| Description | Import build records into Docker Desktop | | Usage | docker buildx history import [OPTIONS] - |
Description
Import a build record from a .dockerbuild archive into Docker Desktop. This lets you view, inspect, and analyze builds created in other environments or CI pipelines.
Options
| Option | Default | Description |
|---|---|---|
-f, --file | Import from a file path |
Examples
Import a .dockerbuild archive from standard input
console
docker buildx history import < mybuild.dockerbuildImport a build archive from a file (--file)
console
docker buildx history import --file ./artifacts/backend-build.dockerbuildOpen a build manually
By default, the import command automatically opens the imported build in Docker Desktop. You don't need to run open unless you're opening a specific build or re-opening it later.
If you've imported multiple builds, you can open one manually:
console
docker buildx history open ci-build