Skip to content

Instantly share code, notes, and snippets.

@danielef
Created September 5, 2016 17:32
Show Gist options
  • Save danielef/682cd4ebb8d38081f5090dc32dcd0021 to your computer and use it in GitHub Desktop.
Save danielef/682cd4ebb8d38081f5090dc32dcd0021 to your computer and use it in GitHub Desktop.
Docker delete all containers
for i in $( docker ps -a | sed -n '1!p' | awk '{print$1}' ); do docker rm $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment