Skip to content

Instantly share code, notes, and snippets.

@stenrdj
Created January 29, 2018 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stenrdj/6a1f4e400f3b0b682a7c041f29d7ab8b to your computer and use it in GitHub Desktop.
Save stenrdj/6a1f4e400f3b0b682a7c041f29d7ab8b to your computer and use it in GitHub Desktop.
Docker commands (Stop,Remove container and images)
# Stop all containers
sudo docker stop $(sudo docker ps -a -q)
# Delete all containers
sudo docker rm $(sudo docker ps -a -q)
# Delete all images
sudo docker rmi $(sudo docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment