Skip to content

Instantly share code, notes, and snippets.

@sloppylopez
Created April 6, 2019 23:36
Show Gist options
  • Save sloppylopez/19f0f3526a9b7e1e78fbeceba372129d to your computer and use it in GitHub Desktop.
Save sloppylopez/19f0f3526a9b7e1e78fbeceba372129d to your computer and use it in GitHub Desktop.
Clean Docker Local
function cleanDockerLocal
echo -e "Stoping Docker containers 💃" | colorStuff
docker kill (docker ps -q) | colorStuff
echo -e "Deleting Docker containers 🔥" | colorStuff
docker rm (docker ps -a -q) | colorStuff
echo -e "Deleting Docker images 💥" | colorStuff
docker rmi (docker images -q) | colorStuff
echo -e "cleanDockerLocal done! 🀄" | colorStuff
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment