Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 267 Bytes

Docker Tips.md

File metadata and controls

15 lines (8 loc) · 267 Bytes

If you want to cleanup docker images and containers

CAUTION: this will flush everything

stop all containers

docker stop $(docker ps -a -q)

remove all containers

docker rm $(docker ps -a -q)

remove all images

docker rmi -f $(docker images -a -q)