Skip to content

Instantly share code, notes, and snippets.

@vitor-caetano
Created February 2, 2017 13:20
Show Gist options
  • Select an option

  • Save vitor-caetano/8120902dcb46a397281d546a9800ca46 to your computer and use it in GitHub Desktop.

Select an option

Save vitor-caetano/8120902dcb46a397281d546a9800ca46 to your computer and use it in GitHub Desktop.
Remove old docker images
docker images --no-trunc --format '{{.ID}} {{.CreatedSince}}' | grep ' days' | awk '{ print $1 }' | xargs docker rmi || true
docker images --no-trunc --format '{{.ID}} {{.CreatedSince}}' | grep ' weeks' | awk '{ print $1 }' | xargs docker rmi || true
docker images --no-trunc --format '{{.ID}} {{.CreatedSince}}' | grep ' months' | awk '{ print $1 }' | xargs docker rmi || true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment