Skip to content

Instantly share code, notes, and snippets.

View joaotorquato's full-sized avatar
🤟

João Torquato joaotorquato

🤟
View GitHub Profile
@joaotorquato
joaotorquato / docker-utils.md
Last active October 16, 2023 14:07
Docker utils

Stop all Docker containers

$ docker stop $(docker ps -a -q)

Remove all stopped Docker containers

$ docker rm $(docker ps -a -q)

Kill all Docker containers