Skip to content

Instantly share code, notes, and snippets.

@himanshu4141
Created June 28, 2018 11:20
Show Gist options
  • Save himanshu4141/60f5b3d979e7658bade179eb5450882a to your computer and use it in GitHub Desktop.
Save himanshu4141/60f5b3d979e7658bade179eb5450882a to your computer and use it in GitHub Desktop.
List all exited containers

docker ps -aq -f status=exited

Remove stopped containers

docker ps -aq --no-trunc -f status=exited | xargs docker rm

Remove dangling/untagged images

docker images -q --filter dangling=true | xargs docker rmi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment