Skip to content

Instantly share code, notes, and snippets.

@kougazhang
Created September 15, 2021 10:59
Show Gist options
  • Save kougazhang/3e9bd58f1a3ee1f9f420c03e45a72390 to your computer and use it in GitHub Desktop.
Save kougazhang/3e9bd58f1a3ee1f9f420c03e45a72390 to your computer and use it in GitHub Desktop.
批量删除镜像 #shell #docker
# delete images that contains none.
docker images|grep none|awk '{print $3}'|xargs -n1 -I{} docker rmi {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment