Skip to content

Instantly share code, notes, and snippets.

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 jamesduncombe/40a6dabd9edeca63034c32c4fe453305 to your computer and use it in GitHub Desktop.
Save jamesduncombe/40a6dabd9edeca63034c32c4fe453305 to your computer and use it in GitHub Desktop.
Find total percentage of containers
$ docker stats --no-stream | awk '{ gsub("%", "", $7); print $7 }' | tail +2 | paste -sd+ - | bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment