mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 21:15:35 +02:00
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
This commit is contained in:
parent
48047a58c9
commit
232ac605e9
1 changed files with 4 additions and 0 deletions
|
@ -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`
|
||||
|
|
Loading…
Add table
Reference in a new issue