Why I can’t push to registry? I get a message
unauthorized: HTTP Basic: Access denied
ERROR: Job failed: exit status 1
I write in terminal
docker login registry.gitlab.com
and after trying to push.
Runner installed as Shell.
.gitlab-ci.yml
image: docker:latest
stages:
- build_image
build:
stage: build_image
script:
- docker build -t $CI_REGISTRY_IMAGE .
- docker push $CI_REGISTRY_IMAGE