Skip to content

Instantly share code, notes, and snippets.

@knibals
Forked from andyrbell/docker-image-size.sh
Created May 11, 2018 12:16
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 knibals/0216cbc900c3487eaa836ada1d5cc29d to your computer and use it in GitHub Desktop.
Save knibals/0216cbc900c3487eaa836ada1d5cc29d 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