mirror of
https://github.com/jc21/docker-registry-ui.git
synced 2026-04-25 09:15:54 +03:00
[GH-ISSUE #1] Error connecting to registry over HTTP #1
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/docker-registry-ui-jc21#1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @msnelling on GitHub (Apr 17, 2018).
Original GitHub issue: https://github.com/jc21/docker-registry-ui/issues/1
I'm running this UI in Kubernetes 1.10 connecting to our private registry in the same cluster and getting the below error.
Our private registry is running with HTTP and I have successfully used this project to connect as a UI without issue https://github.com/snagles/docker-registry-manager
Below are the environment variables I'm using (excuse the Kubernetes syntax).
@msnelling commented on GitHub (Apr 17, 2018):
Ok, I solved this myself. The problem is with specifying the
REGISTRY_SSL=falseenvironment variable, the code is actually just checking whether the variable is set or not (which I have to say isn't particularly intuitive since the docs say to specifytrueto use SSL so it's not unreasonable to expectfalseto not use SSL).@jc21 commented on GitHub (Apr 17, 2018):
Yeah I was just mirroring the variable and it's use from the official docker registry. I probably should check the string value..