Build from the published sources, not from git
[citadel-docker.git] / clean.sh
1 #!/bin/bash
2
3 # This wipes out all of your containers, images, and volumes.  Don't run it.
4
5 docker ps -a | awk ' { print $1 } ' | xargs docker rm
6 docker image list | awk ' { print $3 } ' | xargs docker image rm
7 docker volume list | awk ' { print $2 } ' | xargs docker volume rm