how to clear docker images ubuntu code example
Example 1: docker remove all containers and images
docker container stop $(docker container ls -aq)
Example 2: remove unused images docker manually
$ docker rmi $(docker images -q -f dangling=true)
docker container stop $(docker container ls -aq)
$ docker rmi $(docker images -q -f dangling=true)