Skip to content

Instantly share code, notes, and snippets.

@chnbohwr
Created January 14, 2016 05:49
Show Gist options
  • Save chnbohwr/476901acbc3a3347cc28 to your computer and use it in GitHub Desktop.
Save chnbohwr/476901acbc3a3347cc28 to your computer and use it in GitHub Desktop.
clean docker containers and volumes
echo 'kill all running container'
docker kill $(docker ps -q)
echo 'remove all container'
docker rm -v $(docker ps -a -q)
echo 'remove all volumes'
docker volume rm $(docker volume ls -q)
echo 'Delete all untagged/dangling (<none>) images'
docker rmi $(docker images -q -f dangling=true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment