Skip to content

Instantly share code, notes, and snippets.

@hyounggyu
Created September 8, 2017 10:33
Show Gist options
  • Save hyounggyu/a229ae3ec44cabf8ece99300486b0145 to your computer and use it in GitHub Desktop.
Save hyounggyu/a229ae3ec44cabf8ece99300486b0145 to your computer and use it in GitHub Desktop.
Remove all images and containers
#!/bin/bash
# https://techoverflow.net/2013/10/22/docker-remove-all-images-and-containers/
# 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