Merge "Docker image and process cleaup tool"

This commit is contained in:
Jenkins 2014-10-17 19:34:53 +00:00 committed by Gerrit Code Review
commit 505a00a197
2 changed files with 6 additions and 0 deletions

3
tools/cleanup-containers Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker rm $(docker ps -a -q)

3
tools/cleanup-images Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker rmi $(docker images -a -q)