docker images rarely errors, but it is the tool you reach for when a build fails with "no space left on device": run docker images and docker system df to see which images dominate disk, then docker image prune -af. A common confusion: --filter "dangling=true" only shows untagged layers; to free space from tagged-but-unused images, prune with docker image prune -a.
Frequently asked questions
docker images: List Images, Filters & Formatting?
docker images (alias docker image ls) lists images stored locally. This page covers filtering, formatting, and using it to find disk hogs in CI.
What it does?
docker images shows the repository, tag, image ID, creation time, and size of each local image. It is the read-only counterpart to docker rmi.
Common errors in CI?
docker images rarely errors, but it is the tool you reach for when a build fails with "no space left on device": run docker images and docker system df to see which images dominate disk, then docker image prune -af.