Skip to content

Instantly share code, notes, and snippets.

@jericrealubit
Forked from andyrbell/docker-image-size.sh
Created April 19, 2018 02:20
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 jericrealubit/8e8b5330056609b320b3934080eab723 to your computer and use it in GitHub Desktop.
Save jericrealubit/8e8b5330056609b320b3934080eab723 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment