Skip to content

Instantly share code, notes, and snippets.

@ollelauribostrom
Created February 8, 2018 16:21
Show Gist options
  • Save ollelauribostrom/35900b19ee2485e27aa454352656248d to your computer and use it in GitHub Desktop.
Save ollelauribostrom/35900b19ee2485e27aa454352656248d to your computer and use it in GitHub Desktop.
Docker: Remove All Images and Containers
# @https://davidwalsh.name/docker-remove-all-images-containers
# Delete every Docker containers
# Must be run first because images are attached to containers
docker rm -f $(docker ps -a -q)
# Delete every Docker image
docker rmi -f $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment