Last active
June 3, 2024 16:58
-
-
Save andyrbell/f30ae74c0eff82ae52238f4a7df9a313 to your computer and use it in GitHub Desktop.
Sort docker images by size desc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
docker images --format '{{.Size}}\t{{.Repository}}\t{{.Tag}}\t{{.ID}}' | sed 's/ //' | sort -h -r | column -t |
docker images | sort -k7 -h
@quantonganh I referenced your command in another post.
I had to replace the decimal separator in dockers {{.Size}}
which seems to be always a dot, with the one of my locale to make sort -h
work properly.
docker images --format '{{.Size}}\t{{.Repository}}:{{.Tag}}\t{{.ID}}' | sed 's/\./,/' | sort -hr | column -t
Note: the sed
command blindly replaces the first "." per line.
I had to replace the decimal separator in dockers
{{.Size}}
which seems to be always a dot, with the one of my locale to makesort -h
work properly.
Setting locale collate would do the trick as well. Something like this should work too:
docker images | LC_COLLATE=C.UTF-8 sort -k7 -hr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@quantonganh Great one! I just added an
-r
to show the biggest image first:docker images | sort -k7 -h -r