Skip to content

Instantly share code, notes, and snippets.

View DavidForster's full-sized avatar
💻

David Forster DavidForster

💻
View GitHub Profile
@andyrbell
andyrbell / docker-image-size.sh
Last active September 11, 2022 22:36
Sort docker images by size desc
#!/bin/sh
docker images --format '{{.Size}}\t{{.Repository}}\t{{.Tag}}\t{{.ID}}' | sed 's/ //' | sort -h -r | column -t