Prezados, bom dia. Executando pipeline .gitlab-ci.yml, não consigo conectar no Docker hub usando leitura de variáveis declaradas no settings-ci/cd-variables
Em teste coloquei os valores dentro do arquivo e conectou.
Lendo o fórum e bucando no google não solucionei o problema.
Alguém passou po r isto:
Log de erro
WARNING: API is accessible on http://0.0.0.0:2375 without encryption. Access to the remote API is equivalent to root access on the host. Refer to the 'Docker daemon attack surface' section in the documentation for more information: https://docs.docker.com/engine/security/security/#docker-daemon-attack-surface WARNING: bridge-nf-call-iptables is disabled WARNING: bridge-nf-call-ip6tables is disabled $ docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD --password-stdin WARNING! Using --password via the CLI is insecure. Use --password-stdin. --password and --password-stdin are mutually exclusive Cleaning up file based variables 00:01
ERROR: Job failed: exit code 1
image: docker:stable
services:
- docker:dind
before_script:
- docker info
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD
# criando imagem chamada minha-imagem e publicando tag
build-docker:
stage: build
script:
- docker build -t minha-imagem .
- docker tag minha-imagem repo/minha-imagem:lastest
- docker push repo/minha-imagem:lastest