Skip to content

Instantly share code, notes, and snippets.

View pubkey's full-sized avatar
🤯
You don't need a backend

Daniel Meyer pubkey

🤯
You don't need a backend
View GitHub Profile
@pubkey
pubkey / docker_deleteAll.bash
Last active January 14, 2021 09:18
Delete all Docker images and containers and volumes and networks
# stop and delete all containers
docker rm -f $(docker ps -a -q)
# delete all images
docker rmi -f $(docker images -q)
# delete all volumes
docker volume rm $(docker volume ls -q)