Documentation Index
Fetch the complete documentation index at: https://buildcharts.dev/llms.txt
Use this file to discover all available pages before exploring further.
docker buildx history is one of the best ways to troubleshoot a BuildCharts build after docker buildx bake has finished.
BuildCharts already leans on this data:
buildcharts summaryreads the latest Buildx history- Buildx history records let you inspect completed builds without rerunning them immediately
When to use it
Usebuildx history when you need to:
- See which build record failed
- Inspect build metadata and outputs
- Print full step logs again
- Open a build record in Docker Desktop
- Import a
.dockerbuildartifact from CI into Docker Desktop
List recent builds
List completed build records for the active builder:Inspect a build record
Once you have a build ID, inspect it:^1 for the previous build:
Replay build logs
To print the logs of a completed build:Open the build in Docker Desktop
If you use Docker Desktop, open a build record in the Builds UI:Import a CI build into Docker Desktop
If your CI system exports a.dockerbuild bundle, you can import it locally:
buildcharts summary exports:
Suggested troubleshooting flow
- Run
buildcharts generate. - Run
docker buildx bake --file .buildcharts/docker-bake.hcl. - Run
docker buildx history lsto locate the build record. - Run
docker buildx history inspect <BUILD_ID>for metadata. - Run
docker buildx history logs <BUILD_ID>for full logs. - If needed, run
buildcharts summaryto export a BuildCharts summary and.dockerbuildartifact.
