Skip to content

Instantly share code, notes, and snippets.

@pilgrim2go
Forked from andyrbell/docker-image-size.sh
Created July 3, 2020 00:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pilgrim2go/bb9369762d71bf1c3d6fd85039b8248d to your computer and use it in GitHub Desktop.
Save pilgrim2go/bb9369762d71bf1c3d6fd85039b8248d 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