prune based on current version
This commit is contained in:
parent
b27d01fdbe
commit
af30249987
@ -18,10 +18,16 @@ export -f sync
|
|||||||
|
|
||||||
prune(){
|
prune(){
|
||||||
echo -e "🄿 🅁 🅄 🄽 🄴"
|
echo -e "🄿 🅁 🅄 🄽 🄴"
|
||||||
echo "Pruned Docker Images"
|
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
|
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"
|
echo "Failed to Prune Docker Images"
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
if ! docker image prune -af | grep "^Total"; then
|
||||||
|
echo "Failed to Prune Docker Images"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
export -f prune
|
export -f prune
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user