Skip to content

Instantly share code, notes, and snippets.

@abrkn
Created September 15, 2014 08:44
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 abrkn/fb48a4939c1896d3a900 to your computer and use it in GitHub Desktop.
Save abrkn/fb48a4939c1896d3a900 to your computer and use it in GitHub Desktop.
Kill all running docker containers
#!/usr/bin/env bash
docker ps | cut -f1 -d' ' | tail -n+2 | xargs docker kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment