Examples (6)
Show disk usage
Filter output based on a specific condition
docker buildx du --filter "description~=golang"Show verbose output
docker buildx du --verboseFormat the output using a Go template
docker buildx du --format "table .ID .Description"Pretty print output as JSON with `jq` command
docker buildx du --format json | jq .Inspect the disk usage of a specific builder
docker buildx du --builder builder_namemade by @shridhargupta | data from tldr-pages