Skip to content

Instantly share code, notes, and snippets.

View VishalTaj's full-sized avatar
🎯
Focusing

Vishal Taj PM VishalTaj

🎯
Focusing
  • Kuala Lampur, Malaysia
View GitHub Profile
@VishalTaj
VishalTaj / docker.md
Last active August 7, 2022 13:00
quick reference

Delete all images using the following command:

docker rmi $(docker images -a -q)

Delete all containers using the following command:

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