Skip to content

Instantly share code, notes, and snippets.

View jmcoimbra's full-sized avatar
🇧🇷
Making my country a better place

Juliano M. Coimbra jmcoimbra

🇧🇷
Making my country a better place
View GitHub Profile
@jmcoimbra
jmcoimbra / docker.txt
Created June 3, 2019 02:54
Docker helpful commands
# kill all running containers with
docker kill $(docker ps -q)
# delete all stopped containers with
docker rm $(docker ps -a -q)
# delete all images with
docker rmi $(docker images -q)