Skip to content

Instantly share code, notes, and snippets.

@iainp999
Created September 27, 2018 09:58
Show Gist options
  • Save iainp999/fdfc25197555c38caf0a68814f20df86 to your computer and use it in GitHub Desktop.
Save iainp999/fdfc25197555c38caf0a68814f20df86 to your computer and use it in GitHub Desktop.
Docker: total size of all images
docker images | awk '{print $7}' | sed '/^$/d' | sed 's/[^0-9]*//g' | paste -sd+ - | bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment