Can you filter docker images by wildcards:
docker images "g*"
This actually works for some images starting with "g".
But it does not list gcr.io/projectid, do you know why?
Can you filter docker images by wildcards:
docker images "g*"
This actually works for some images starting with "g".
But it does not list gcr.io/projectid, do you know why?
After a bit of experimentation, it seems that if you want to use wildcards in docker images, you need to include the repository (and any subfolders) that are part of the full image name
Your image, above, does not start with a g, the docker registry does, so you get no hits.
So, for you docker images "g*/*" would list gcr.io/projectid
Not exactly helpful, maybe, but that's the reason that you don't get what you expect.