Skip to content

Instantly share code, notes, and snippets.

@mxr576
Created March 6, 2016 16:02
Show Gist options
  • Save mxr576/e4f00ad936f0445abb3c to your computer and use it in GitHub Desktop.
Save mxr576/e4f00ad936f0445abb3c to your computer and use it in GitHub Desktop.
Three useful aliases to clean-up after yourself #Docker
alias docker-cli="docker rmi $(docker images -qf dangling=true)"
alias docker-clc="docker rm -v $(docker ps -aqf status=exited)"
alias docker-clv="docker volume rm $(docker volume ls -qf dangling=true)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment