Skip to content

Instantly share code, notes, and snippets.

@jkullick
Last active July 29, 2016 12:06
Show Gist options
  • Save jkullick/a886dedfbbb96b2b725dffaaf9f0245a to your computer and use it in GitHub Desktop.
Save jkullick/a886dedfbbb96b2b725dffaaf9f0245a to your computer and use it in GitHub Desktop.
Remove all Docker Images and Containers
# Containers
docker rm -f $(docker ps -a -q)

# Images
docker rmi -f $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment