Skip to content

Instantly share code, notes, and snippets.

@blockspacer
Forked from andyrbell/docker-image-size.sh
Created July 22, 2020 04:56
Show Gist options
  • Save blockspacer/7a44d7796579346648d4515d9e78f536 to your computer and use it in GitHub Desktop.
Save blockspacer/7a44d7796579346648d4515d9e78f536 to your computer and use it in GitHub Desktop.
Sort docker images by size desc
#!/bin/sh
docker images --format '{{.Size}}\t{{.Repository}}\t{{.Tag}}\t{{.ID}}' | sed 's/ //' | sort -h -r | column -t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment