From 3377d6d042f9f429a8b84ec1377cfa400971ec4e Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Mon, 21 Dec 2020 11:09:23 -0500 Subject: [PATCH] remove scripts superceded by docker system prune --- bin/clean-stale-images | 4 ---- bin/clean-stopped-containers | 4 ---- 2 files changed, 8 deletions(-) delete mode 100755 bin/clean-stale-images delete mode 100755 bin/clean-stopped-containers diff --git a/bin/clean-stale-images b/bin/clean-stale-images deleted file mode 100755 index 5c4f196..0000000 --- a/bin/clean-stale-images +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -for i in $(podman images -q -f dangling=true) ; do - podman rmi $i -done diff --git a/bin/clean-stopped-containers b/bin/clean-stopped-containers deleted file mode 100755 index d353667..0000000 --- a/bin/clean-stopped-containers +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -for i in $(docker ps -aq -f status=exited) ; do - docker rm -f -v $i -done