Kill All Docker Images

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

# kill containers

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


# Delete all images
docker rmi -f $(docker images -q)

You might also like