Skip to content

Instantly share code, notes, and snippets.

View skrix's full-sized avatar
🇺🇦
StandWithUkraine

Andrew skrix

🇺🇦
StandWithUkraine
View GitHub Profile
@skrix
skrix / docker.md
Last active May 22, 2025 15:36 — forked from nickcernis/docker-cleanup.md
Docker commands to remove all containers and images

bash / zsh

# kill all running containers  
docker kill $(docker ps -q)
# delete all stopped containers.  
docker rm $(docker ps -a -q)