I recently began using Docker and had no idea that instead of ctrl-c or docker-compose stop, I should use docker-compose down to terminate my tests. I now have a big number of docker images that are no longer needed on my local machine.
Is there a command I can use to delete all local Docker images and containers?
There isn't anything like docker rmi --all --force --all flag, but I'm seeking for anything comparable.