Skip to content

Instantly share code, notes, and snippets.

@crazyoptimist
Last active November 26, 2020 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crazyoptimist/ae347360e235db267f5d6ad4602665a1 to your computer and use it in GitHub Desktop.
Save crazyoptimist/ae347360e235db267f5d6ad4602665a1 to your computer and use it in GitHub Desktop.
Remove <none> tagged docker images
if [ -z "$(docker images | awk '/^<none>/ {print $3}')" ]; then
echo "You don't have any <none> tagged images."
else
docker rmi $(docker images | awk '/^<none>/ {print $3}')
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment