Skip to content

Instantly share code, notes, and snippets.

@0xch4z
Created September 18, 2018 18:38
Show Gist options
  • Save 0xch4z/f36f6eabd3e2e0a03893ea40c083767c to your computer and use it in GitHub Desktop.
Save 0xch4z/f36f6eabd3e2e0a03893ea40c083767c to your computer and use it in GitHub Desktop.
Delete all docker images in one line
docker container ls | awk '{print $3}' | xargs docker container rm --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment