Merge pull request #31 from Heavybullets8:version_based_prune

prune based on current version
This commit is contained in:
Heavybullets8 2022-12-15 07:05:33 +00:00 committed by GitHub
commit 211fb7b488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,9 +18,15 @@ export -f sync
prune(){
echo -e "🄿 🅁 🅄 🄽 🄴"
echo "Pruned Docker Images"
if ! cli -c 'app container config prune prune_options={"remove_unused_images": true, "remove_stopped_containers": true}' | head -n -4; then
version="$(cli -c 'system version' | awk -F '-' '{print $3}' | tr -d " \t\r\.")"
if (( "$version" <= 22120 )); then
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
else
if ! docker image prune -af | grep "^Total"; then
echo "Failed to Prune Docker Images"
fi
fi
}
export -f prune