Filter docker images by repository name

According to the documentation at https://docs.docker.com/engine/reference/commandline/images/ you can match by wildcard by enclosing in double quotes:

docker images "scdockerdemo_*"

** special chars ** when you have special characters like '/' in the repository name, you should escape it to filter by repository name.

ex)

> docker images "zirho6\/*"
REPOSITORY                   TAG                 IMAGE ID            CREATED             SIZE
zirho6/aaaa              latest              946bf5cc28fc        2 days ago          997MB
zirho6/bbbb              latest              741a6e368d07        10 days ago         866MB
zirho6/ccc               latest              173b36570522        12 days ago         853MB
zirho6/dddd              latest              e08e5c202e9b        13 days ago         853MB

If you want to filter by repository name(eg: testImage), just use the following:

docker images testImage

When you have multiple images with same repository name but diffetent tags, you can specify tags on the repository name by using a ':' ( For example, testImage:<whatever tag>)

Source: Docker images

Tags:

Docker