connection refused при логине в container registry
Всем привет! настроил гитлаб из композа, не могу сделать докер логин в container registry
Get "http://5.200.35.16:5005/v2/": Get "http://5.200.35.16/jwt/auth?account=root&client_id=docker&offline_token=true&service=container_registry": dial tcp 5.200.35.16:80: connect: connection refused
Куда можно копать? ип таблы открыл дополнительно соед-я
Сам код композа такой
version: "3.5"
services:
gitlab:
image: gitlab/gitlab-ce:latest
hostname: "localhost"
restart: unless-stopped
environment:
DOCKER_OPTS: "--insecure-registry registry.gitlab.local:5005"
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://5.200.35.16'
gitlab_rails['initial_root_password'] = 'CHANGEME123'
registry_external_url 'http://5.200.35.16:5005'
gitlab_rails['registry_enabled'] = true
gitlab_rails['registry_port'] = "5005"
gitlab_rails['registry_path'] = "/var/opt/gitlab/gitlab-rails/shared/registry"
registry['enable'] = true
registry_nginx['redirect_http_to_https'] = false
ports:
- "8000:80"
- "8822:22"
- "5005:5005"
volumes:
- ./data/docker/gitlab/etc/gitlab:/etc/gitlab
- ./data/docker/gitlab/var/opt/gitlab:/var/opt/gitlab
- ./data/docker/gitlab/var/log/gitlab:/var/log/gitlab
networks:
- gitlab_net
dind:
image: docker:20-dind
restart: always
privileged: true
environment:
DOCKER_TLS_CERTDIR: ""
command:
- --storage-driver=overlay2
volumes:
- ./data/dind/docker:/var/lib/docker
networks:
- gitlab_net
depends_on:
- gitlab
networks:
gitlab_net:
name: gitlab_net