Skip to content

Instantly share code, notes, and snippets.

@cahitbeyaz
Created September 21, 2020 08:00
Show Gist options
  • Save cahitbeyaz/310d85f85a8f4417ba86af6dad4b6bca to your computer and use it in GitHub Desktop.
Save cahitbeyaz/310d85f85a8f4417ba86af6dad4b6bca to your computer and use it in GitHub Desktop.
# changed to windows scripts credits to: https://gist.github.com/beeman/aca41f3ebd2bf5efbd9d7fef09eac54d
# Stop all containers
docker stop $(docker ps -qa)
# Remove all containers
docker rm $(docker ps -qa)
# Remove all images
docker rmi -f $(docker images -qa)
# Remove all volumes
docker volume rm $(docker volume ls -qf)
# Remove all networks
docker network rm $(docker network ls -q)
# Your installation should now be all fresh and clean.
# The following commands should not output any items:
# docker ps -a
# docker images -a
# docker volume ls
# The following command show only show the default networks:
# docker network ls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment