I\'ve the following images:
alex@alexvps:~$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
&
To delete some Docker image you must execute the following command:
$ docker rmi
So, to delete all Docker images you can execute the following command:
$ docker rmi $(docker images -q)
Now, if you want delete all Docker images (including images that are in use), you can add the flag -f, for example:
$ docker rmi -f $(docker images -q)