Lister les images inutilisées
GNU/Linux
Docker
RUNNINGS_IMAGES=$(docker ps --format {{.Image}})
docker images --format "table {{.ID}}\t{{.Size}}\t{{.Repository}}:{{.Tag}}" \
| grep -v "$RUNNINGS_IMAGES"
unset RUNNINGS_IMAGES
Exemple de rendu :
root@localhost:/# RUNNINGS_IMAGES=$(docker ps --format {{.Imag...