Skip to content

Instantly share code, notes, and snippets.

@chanjarster
Created September 19, 2018 01:29
Show Gist options
  • Save chanjarster/14dbb0e5115bada802526d8e0aca0dbc to your computer and use it in GitHub Desktop.
Save chanjarster/14dbb0e5115bada802526d8e0aca0dbc to your computer and use it in GitHub Desktop.
清理没有tag的docker image
#!/bin/bash
docker image ls | grep '<none>' | awk '{print $3}' | xargs -n1 -I{} docker image rm {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment