[provisioning] Script to clean up after docker

This commit is contained in:
Correl Roush 2018-05-10 16:43:32 -04:00
parent 98ae821709
commit 68c4ddbd2e

3
bin/undock Executable file
View file

@ -0,0 +1,3 @@
#!/bin/bash
docker stop $(docker ps -aq); docker rm $(docker ps -aq); docker rmi $(docker images -q) --force