Created
August 6, 2022 04:21
-
-
Save kattatzu/78820d710246a7e0238fe62c6fc3214a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stop all containers | |
# sudo docker-compose down | |
# Delete all containers | |
sudo docker rm -f $(sudo docker ps -a -q) | |
# Delete all volumes | |
sudo docker volume rm $(sudo docker volume ls -q) | |
# Delete all networks | |
sudo docker network rm $(sudo docker network ls -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment