docker:remove_dangling_images
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
docker:remove_dangling_images [2020/04/25 17:42] – peter | docker:remove_dangling_images [2020/05/13 08:54] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Docker - Remove dangling images ====== | ||
- | |||
- | Docker images consist of multiple layers. | ||
- | |||
- | Dangling images are layers that have no relationship to any tagged images. | ||
- | |||
- | * They no longer serve a purpose and consume disk space. | ||
- | * They can be located by adding the filter flag, -f with a value of dangling=true to the docker images command. | ||
- | * When you're sure you want to delete them, you can add the -q flag, then pass their ID to docker rmi: | ||
- | |||
- | To list dangling images: | ||
- | |||
- | <code bash> | ||
- | docker images -f dangling=true | ||
- | </ | ||
- | |||
- | To remove dangling images: | ||
- | |||
- | <code bash> | ||
- | docker rmi $(docker images -f dangling=true -q) | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | <code bash> | ||
- | docker rmi $(docker images --filter " | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | An alternative to listing dangling images: | ||
- | |||
- | <code bash> | ||
- | docker images | awk '/< | ||
- | </ | ||
- | |||
- | ---- | ||
docker/remove_dangling_images.1587836545.txt.gz · Last modified: 2020/07/15 09:30 (external edit)