-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support managing registries #85
Comments
Blocked on containers/podman#4793 |
Selecting of registries when downloading image has been introduced in #447 We would just add a new one or dropped one from If I understand it correctly, if you always only updated podman, you can still be using |
Any update on this issue? I was wondering if it is possible to add the authentication to a private registry, like the Gitlab one for example. While i can add the registry to the registry list in |
Unfortunately not. Patches are welcomed though ;)
I would think so. Never tried it though. Quick google search shows some results but for specific queries it is best if you contact podman team directly: https://github.com/containers/podman |
Waking things up a bit. @Lykos94, you can drop your pull secret (authentication JSON file) in your host's This makes me think, @marusak ^^ |
It's not clear how we should proceed on this issue. It's marked as needsdesign, but I would need some more information to make any design for this. There's not anything actionable from my side yet (since it's not clear what's wanted and what's needed), hence no design provided.
Since repos are where images come from, we should add a separator and two actions to the Images "kebab" menu (the vertical ... icon's menu): "Add registry" and "Remove registry". Adding a repository would have the appropriate fields. It's not clear what those should be, so I can't properly design it, but here's a shot without proper information: Removing a repository would have something like a list of repositories with details and each would have a checkbox. You could select which one(s) you want to remove and it'd have a danger-styled (red) action button to remove it. Again, I don't have the information for this, but here's an attempt: (None of these would be checked by default, and the "Remove" button would be disabled unless something is checked. This list would have a maximum height and overflow if there are many entries, as indicated here in this mockup.) I'll remove |
Hi all, how is this progressing along? I've really been wanting to test Homarr dashboard, but it appears they've moved from docker to ghcr.io and would love to add this registry. Thank you |
Right now you can user podman in terminal to pull the image. Then in Cockpit, click "Create Container" next to the image it pulls down. |
You're supposed to be able to put in any image, including ghci.io in the image dropdown on "Create container" and have it work. I tried This is a bug, and we should fix that regardless of registry management. It should always allow using a URI fragment to an image regardless of if a registry is browsable or not. @dpieski is correct, that for now, you can do I've opened an issue about this bug @ #1753 |
Podman relies on the the /etc/containers/registries.conf file to determine where container registries exist. It's most important use is to add a private registry like 'acme.com' to the list so it will search for images there first. The category to update for this in the file is
[registries.search]
The file can also be used to block registries in the category
[registries.block]]
or to allow for insecure registries['insecure.io']
, being able to toggle those would be handy too, but of lesser importance.The text was updated successfully, but these errors were encountered: