-
Notifications
You must be signed in to change notification settings - Fork 4
CLI Machines Docker Df
github-actions[bot] edited this page Aug 9, 2026
·
1 revision
Reports docker's disk usage by object type, and how much of it is reclaimable.
ed machines docker df [--json] <machine>
| Name | Type / values | Default | What it does |
|---|---|---|---|
<machine> |
machine name, ssh alias, id, or any unambiguous prefix | required | Which machine to ask. |
| Name | Type / values | Default | What it does |
|---|---|---|---|
--json |
flag | off | Emit JSON on stdout instead of the table. |
--help, -h
|
flag | off | Print the help for this command on stdout and exit 0. |
$ ed machines tuf docker df
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 12 5 11.3 GB 3.6 GB
Containers 5 0 462 MB 462 MB
Local Volumes 10 4 11.7 GB 273 MB
Build Cache 0 0 0 B 0 B
[
{
"active": 5,
"reclaimableBytes": 3585000000,
"sizeBytes": 11310000000,
"total": 12,
"type": "Images"
},
{
"active": 4,
"reclaimableBytes": 272700000,
"sizeBytes": 11730000000,
"total": 10,
"type": "Local Volumes"
}
]-
typeis docker's own label:Images,Containers,Local VolumesandBuild Cache, capitalised and spaced exactly like that. -
totalis docker'sTotalCountandactiveis how many of them are in use. -
sizeBytesandreclaimableBytesare parsed from docker's decimal strings. Docker prints reclaimable as3.585GB (31%); the percentage is dropped and only the size is kept.
This is the report to read before pruning. reclaimableBytes for Images is
what prune images would free, and the Local Volumes row is what
prune volumes would free, which is data rather than cache.
ed machines tuf docker df
ed machines tuf docker df --json | jq -r '.[] | "\(.type) \(.reclaimableBytes)"'
ed machines tuf docker df --json | jq 'map(.reclaimableBytes) | add'
Read only, 45 second ceiling, docker system df --format '{{json .}}'. On a
busy daemon this is the slowest of the read commands, because docker walks the
image and volume trees to answer it.
-
ed machines docker, the rest of this group - All
edcommands
Auto-generated from docs/, edit the docs in the repo, not the wiki.
CLI reference
Companion
- Deploy
- Concepts
- Concepts Memory
- Concepts Ingestion
- Concepts Search
- Concepts Chat
- Concepts Learning
- Concepts Brain
- Concepts Friend
- Hosts
- Stack
- Status
- Doctor
- Search
- Index
- Ingest
- Episodes
- Sync
- Observations
- Reflect
- Beliefs
- Ask
- Extract
- Claims
- Corroborate
- Runs
- Chat
- Conversations
- Forget
- Export
- Import
- Erase
- Wipe
- Episode
- Nightly
- Reason
- Personas
- Council
- Lenses
- Core
- Why
- Hypotheses
- Predictions
- Commitments
- Discrepancies
- Calibration
- Inquire
- Entities
- Eval
- Standup
- Machines
- Baselines
- Connectors
- Facts
- Correct
- Weekly
- Db
Guides