remove downloaded docker images code example
Example 1: docker remove all containers and images
docker container rm $(docker container ls -aq)
Example 2: remove docker images
docker system prune -a
Example 3: remove downloaded docker images
docker image rm [OPTIONS] IMAGE [IMAGE...]