Skip to content

Instantly share code, notes, and snippets.

@thewh1teagle
Last active May 16, 2022 08:23
Show Gist options
  • Select an option

  • Save thewh1teagle/00fd1c9c5587443508583b9468633b8c to your computer and use it in GitHub Desktop.

Select an option

Save thewh1teagle/00fd1c9c5587443508583b9468633b8c to your computer and use it in GitHub Desktop.
Delete and stop all docker images and containers
sudo docker stop $(sudo docker ps -a -q)
sudo docker rm $(sudo docker ps -a -q)
sudo docker image rm $(sudo docker image ls -q) --force
sudo docker volume rm $(sudo docker volume ls -q) --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment