Skip to content

Instantly share code, notes, and snippets.

@guiyomh
Last active March 30, 2016 14:43
Show Gist options
  • Save guiyomh/c4b0a36173e378b9d956 to your computer and use it in GitHub Desktop.
Save guiyomh/c4b0a36173e378b9d956 to your computer and use it in GitHub Desktop.
Docker Cleanup

Kill all running containers

docker kill $(docker ps -q)

Delete all stopped containers (including data-only containers)

docker rm $(docker ps -a -q)

Delete all 'untagged/dangling' () images

docker rmi $(docker images -q -f dangling=true)

Delete ALL images

docker rmi $(docker images -q)

Stats

docker stats $(docker ps --format={{.Names}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment