This commit is contained in:
Sebastian
2024-03-25 13:23:56 +01:00
parent 475fcb4c21
commit a2566076c8

View File

@@ -34,7 +34,7 @@ done
if [ "$1" = "--remove-from-disk" ]; then
# Iterate over volumes in the difference array and remove them from disk
for volume in "${unused_volume[@]}"; do
for volume in "${unused_volumes[@]}"; do
docker volume rm "$volume"
done
else