-
Hi, I currently have an insecure registry, which means I cannot push into it unless I add the specified registry into docker config like so (local machine config):
In Quarkus, I can see there is a configuration property to allow insecure registries found here. Since I build and push the image on github runner, the image fails to push, as the push command throws the x509 error (certificate invalid). As far as I understood, the above configuration property should allow me to push? If I add the above "insecure-registries" property to my local machine and try to push, it allows me to push. I have also checked the code, to see where this "insecure" property is actually used, and I think this is the only use of the property. But again, this is used in JIB. Why is this not used for docker/other container providers as well? Is it not possible? If so, can we update the documentation to reflect that this property only works for JIB? Thank you and best regards, Jan |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
/cc @geoand (jib) |
Beta Was this translation helpful? Give feedback.
-
@zivkovic if you know which docker command line arg to use, we can certainly add it |
Beta Was this translation helpful? Give feedback.
I'l try to do it this week when I get some time.