13 lines
325 B
Bash
Executable File
13 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get list of image IDs with <none> tag (dangling images)
|
|
dangling_images=$(podman images -f "dangling=true" -q)
|
|
|
|
if [ -z "$dangling_images" ]; then
|
|
echo "✅ No dangling images to remove."
|
|
else
|
|
echo "⚠️ Removing dangling images..."
|
|
echo "$dangling_images" | xargs podman rmi -f
|
|
echo "🧹 Done!"
|
|
fi
|