Skip to content

Instantly share code, notes, and snippets.

@obar1
Last active February 15, 2017 11:33
Show Gist options
  • Select an option

  • Save obar1/7a12af187b53b36371576cfa505532fe to your computer and use it in GitHub Desktop.

Select an option

Save obar1/7a12af187b53b36371576cfa505532fe to your computer and use it in GitHub Desktop.
kill docker container
#kill and rm all docker containers
if [[ $(docker ps -q) ]]; then \
docker kill $(docker ps -q) ;docker rm $(docker ps -a -q) \
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment