Skip to content

Instantly share code, notes, and snippets.

@SensibleWood
Created September 15, 2017 12:28
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 SensibleWood/017be4a1e69b72b53f15575470118657 to your computer and use it in GitHub Desktop.
Save SensibleWood/017be4a1e69b72b53f15575470118657 to your computer and use it in GitHub Desktop.
Cheap way of cleaning out all containers
#!/usr/bin/env bash
docker ps -a | awk '$1 != "CONTAINER" { print $1 }' | xargs docker rm -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment