Skip to content

Instantly share code, notes, and snippets.

@trcook
Last active October 2, 2015 12:44
Show Gist options
  • Save trcook/1d454143982033212bf2 to your computer and use it in GitHub Desktop.
Save trcook/1d454143982033212bf2 to your computer and use it in GitHub Desktop.
quick one-liner to remove all docker containers
#! /usr/bin/zsh
docker rm $(docker ps -a|grep -oe '^\w*')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment