Skip to content

Instantly share code, notes, and snippets.

@yoosuf
Created August 14, 2019 01:48
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yoosuf/affe558947620aa5798b4155951dc12a to your computer and use it in GitHub Desktop.
Save yoosuf/affe558947620aa5798b4155951dc12a to your computer and use it in GitHub Desktop.
Stop and remove all docker containers and images (Docker)
# List all containers (only IDs)
docker ps -aq
# Stop all running containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove 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