I set up an OpenShift cluster using oc cluster up. Now I want to directly access the internal registry, but I am not able to find out the correct url. I already searched a lot for this, but it seems that all the potential solutions don´t point me to the correct way to find out. I was hoping there´s something like docker-registry.:5000 but I get a connection refused when using it for docker login. I already tried:
docker login -u developer -p "$(oc whoami -t)" docker-registry.<hostname>:5000
docker login -u developer -p "$(oc whoami -t)" registry.<hostname>:5000
docker login -u developer -p "$(oc whoami -t)" <hostname>:5000
Can you help me?
Kind regards