Skip to content

Instantly share code, notes, and snippets.

@neumachen
Forked from andyrbell/docker-image-size.sh
Created August 12, 2020 00:49
Show Gist options
  • Select an option

  • Save neumachen/599828ea6544ed7b938c6f19713a928c to your computer and use it in GitHub Desktop.

Select an option

Save neumachen/599828ea6544ed7b938c6f19713a928c 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