Skip to content

Instantly share code, notes, and snippets.

@atma
Created May 4, 2016 00:19
Show Gist options
  • Save atma/3acaf2f5054da52c6aec9cfa7a6a3581 to your computer and use it in GitHub Desktop.
Save atma/3acaf2f5054da52c6aec9cfa7a6a3581 to your computer and use it in GitHub Desktop.
Clean all Docker containers and/or images
#clean all containers:
docker ps -a | sed '1 d' | awk '{print $1}' | xargs -L1 docker rm
#clean all images:
docker images -a | sed '1 d' | awk '{print $3}' | xargs -L1 docker rmi -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment