Skip to content

Instantly share code, notes, and snippets.

@jthmiranda
Last active October 9, 2015 19:35
Show Gist options
  • Save jthmiranda/1a7bc3283fbf0d038d7f to your computer and use it in GitHub Desktop.
Save jthmiranda/1a7bc3283fbf0d038d7f to your computer and use it in GitHub Desktop.
#!/bin/bash
IMAGE_IDS=$(docker images -q --filter="dangling=true")
if [ -n "$IMAGE_IDS" ]; then
docker rmi $IMAGE_IDS > /dev/null 2>&1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment