Skip to content

Instantly share code, notes, and snippets.

@SystemZ
Created June 19, 2016 21:59
Show Gist options
  • Save SystemZ/91fa9775328e0fedb355540074ac359c to your computer and use it in GitHub Desktop.
Save SystemZ/91fa9775328e0fedb355540074ac359c to your computer and use it in GitHub Desktop.
Clear all docker images and containers
#!/bin/bash
#https://techoverflow.net/blog/2013/10/22/docker-remove-all-images-and-containers/
docker rm $(docker ps -a -q)
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment