Skip to content

Instantly share code, notes, and snippets.

@emrahyumuk
Created September 27, 2017 07:52
Show Gist options
  • Save emrahyumuk/55022423413dda23d1855f7f01dd110a to your computer and use it in GitHub Desktop.
Save emrahyumuk/55022423413dda23d1855f7f01dd110a to your computer and use it in GitHub Desktop.
Remove All Containers And All Images On Docker

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