docker:remove_old_and_unused_images
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
docker:remove_old_and_unused_images [2020/04/27 08:13] – peter | docker:remove_old_and_unused_images [2020/05/13 08:55] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Docker - Remove old and unused images ====== | ||
- | |||
- | |||
- | Delete **ALL** dangling data: | ||
- | |||
- | < | ||
- | docker system prune | ||
- | </ | ||
- | |||
- | i.e. In order: containers stopped, volumes without containers and images with no containers). Even unused data, with **-a** option. | ||
- | |||
- | You also have: | ||
- | |||
- | <code bash> | ||
- | docker container prune | ||
- | docker image prune | ||
- | docker network prune | ||
- | docker volume prune | ||
- | </ | ||
- | |||
- | For unused images, use **docker image prune -a** (for removing dangling and ununsed images). | ||
- | |||
- | <WRAP important> | ||
- | **WARNING**: | ||
- | |||
- | **docker system prune --all** will remove **all** unused images not just dangling ones... which can be a bit too much. | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | Combining **docker xxx prune** with the **--filter** option can be a great way to limit the pruning ([[https:// | ||
- | |||
- | The currently supported filters are: | ||
- | |||
- | * **until (< | ||
- | * **label (label=< | ||
- | |||
- | See **https:// | ||
docker/remove_old_and_unused_images.1587975192.txt.gz · Last modified: 2020/07/15 09:30 (external edit)