Skip to content

Instantly share code, notes, and snippets.

@garywu
Created February 17, 2017 23:09
Show Gist options
  • Save garywu/eb886bde9c1b3eea63a90ce2c3ca1f92 to your computer and use it in GitHub Desktop.
Save garywu/eb886bde9c1b3eea63a90ce2c3ca1f92 to your computer and use it in GitHub Desktop.

all existed containers

docker ps -q -f status=exited

remove all exited containers

docker rm $(docker ps -q -f status=exited)

Delete all containers

docker rm $(docker ps -a -q)

Delete all images

docker rmi $(docker images -q)

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