Forbidden error when trying to access the registry in a gitlab inside a docker container on red hat server

Good morning, I am deploying a container with a gitlab, which has worked perfectly so far, the question is that I want to use the registry but I find myself with the problem that I configure it, but when I go to login I the following appears:

[dockermd@srvdevrma1 ~]$ docker login 10.164.7.203:37001
Username: e10697
Password:
Error response from daemon: Get https://10.164.7.203:37001/v2/: Forbidden

For the container configuration, I am using port 37001 to expose the gitlab in https and 443 inside the container.

I have the gitlab.rb configuration as follows, for the registry:

registry_external_url 'https://10.164.7.203:37001'

 gitlab_rails['registry_enabled'] = true
 gitlab_rails['registry_host'] = "10.164.7.203"
 gitlab_rails['registry_port'] = "443"
 gitlab_rails['registry_path'] = "/var/opt/gitlab/gitlab-rails/shared/registry"

I have the rest commenting

I am behind a proxy, however, the proxy should only affect internet output, not internally, since gitlab is for internal use. Any indication what may be happening?

I can enter my gitlab normally with the specified port:

gitlab

Edited by Cesar Justo