How to show registry used for pulling? #24639
Unanswered
piotr-dobrogost
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
~/.config/containers/registries.conf looks like this
In docker-compose.yml I have an unqualified reference to the image (hosted on local registry)
image: some_image:some_tag
When running
podman compose -f ./docker-compose.yml up my-service
I get the following error✘ my-service Error {"message":"unauthorized: authentication required"}
However when running
podman pull local-registry-host.local/namespace/some_image:some_tag
the image is pulled successfully.I wanted to see what registry is being used by podman when pulling and tried
podman --debug compose -f ./docker-compose.yml up my-service
but there's no information on registry being used.
Is there any way to show this information?
Beta Was this translation helpful? Give feedback.
All reactions