Problem Statement
Which command helps you remove dangling or unused images in Docker?
Explanation
`docker image prune` removes all dangling images (untagged images) and frees up disk space. Efficient image cleanup is important for CI/CD systems and build hosts to avoid storage bloat.
Code Solution
SolutionRead Only
docker image prune -a
Practice Sets
This question appears in the following practice sets:
