Replies: 2 comments 2 replies
-
That is already the default
https://docs.podman.io/en/latest/markdown/podman-search.1.html |
Beta Was this translation helpful? Give feedback.
-
I use repository from ; Below, as specified, to exact adresses, So I need to search and check all "my-image" accross all registry repositories with a single command. Maybe a traditional """That is already the default By default, all unqualified-search registries in containers-registries.conf are used."""" However, if we do not query each repository individually, the result only comes based on a single repository. At this point, I must correct you; I may be mistaken or incomplete, but all repositories are definitely not listed on my screen in this way." |
Beta Was this translation helpful? Give feedback.
-
podman search registry.access.redhat.com/httpd
Podman list the HTTP images in the Red Hat registry. This is okay.
podman search httpd
Podman list the HTTP images in the default Docker registry. This is good too.
podman search httpd --all
error:
unknown flag: --all
But I have 3-4 more registered registries, and the
--all
parameter, which is traditionally available in Podman, is not yet defined for the Search option. That's why we get the error:**unknown flag: --all**
. The--all
parameter should definitely be added to the search option, and it would be very convenient to obtain information from all the registries we have.Beta Was this translation helpful? Give feedback.
All reactions