Skip to content

Instantly share code, notes, and snippets.

@daxgames
Last active August 13, 2018 12:25
Show Gist options
  • Select an option

  • Save daxgames/a0d06c97b01f4d886cb1cab5a7395a27 to your computer and use it in GitHub Desktop.

Select an option

Save daxgames/a0d06c97b01f4d886cb1cab5a7395a27 to your computer and use it in GitHub Desktop.
kill all docker containers except specific named containers
for i in `docker ps -a |grep -v "jenkins_master\|jenkins_httpd" |awk '{print $1}'`; do docker rm -f $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment