Skip to content

Instantly share code, notes, and snippets.

View nknapp's full-sized avatar

Nils Knappmeier nknapp

View GitHub Profile
@nknapp
nknapp / wipe-docker.sh
Created January 1, 2017 21:26
Clear the complete docker environment
#!/bin/bash
echo Killing all containers
for i in $( docker ps -q ) ; do
docker kill $i
done
echo Removing all containers
for i in $( docker ps -aq ) ; do
docker rm $i