From 94d8c610199eaf028050d479cb2b79ea5e883051 Mon Sep 17 00:00:00 2001 From: heavybullets8 Date: Wed, 14 Dec 2022 11:40:26 -0700 Subject: [PATCH] update prune --- functions/misc.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/functions/misc.sh b/functions/misc.sh index 407c1c41..fd0d3845 100644 --- a/functions/misc.sh +++ b/functions/misc.sh @@ -19,7 +19,10 @@ export -f sync prune(){ echo -e "🄿 🅁 🅄 🄽 🄴" echo "Pruned Docker Images" -docker image prune -af | grep "^Total" || echo "Failed to Prune Docker Images" +if ! cli -c 'app container config prune prune_options={"remove_unused_images": true, "remove_stopped_containers": true}' | head -n -4: +then + echo "Failed to Prune Docker Images" +fi } export -f prune