Skip to content

Instantly share code, notes, and snippets.

@elderdosantos
Created February 22, 2017 22:26
Show Gist options
  • Save elderdosantos/8b1a4d3af0e7eee812fc5219f575670c to your computer and use it in GitHub Desktop.
Save elderdosantos/8b1a4d3af0e7eee812fc5219f575670c to your computer and use it in GitHub Desktop.
Clean docker
dcleanup () {
docker ps --filter status=exited -q | xargs docker rm
docker images --filter dangling=true -q | xargs docker rmi
docker volume ls -qf dangling=true | xargs docker volume rm
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment