Skip to content

Instantly share code, notes, and snippets.

@edgars
Last active January 4, 2021 22:19
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 edgars/719b224764ab1adde4840bca0f508a44 to your computer and use it in GitHub Desktop.
Save edgars/719b224764ab1adde4840bca0f508a44 to your computer and use it in GitHub Desktop.
#!/bin/bash
clear
echo stopping docker
docker stop $(docker ps -aq)
echo removing all contianers
docker rm $(docker ps -aq)
echo removing all containers
docker rmi $(docker images -q) -f
echo pruning docker system
docker system prune
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment