docker-images: Adding command to sort images by size (#10231)

* docker-images: Adding command to sort images by size

From: https://stackoverflow.com/a/61091528/520275

* docker-images: Adding colon to git images sort command
pull/23/head
Gonzalo Matheu 2023-07-16 03:07:12 -03:00 committed by GitHub
parent 48047a58c9
commit 232ac605e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -22,3 +22,7 @@
- List images that contain a substring in their name:
`docker images "{{*name*}}"`
- Sort images by size:
`docker images --format "{{.ID}}\t{{.Size}}\t{{.Repository}}:{{.Tag}}" | sort -k 2 -h`