DEV Community

Mạnh Đạt
Mạnh Đạt

Posted on

One line to delete all docker images

In case you need to delete all docker images from your system, use this command:

docker image ls | awk '{print $1":"$2}' | xargs docker image rm

Oldest comments (0)