Hi everyone,
I’m kind of new to GitLab and using the Runners. So recently I tried to install a runner on my local machine. I read through the docs, and ended up trying to use this command, gitlab-runner exec docker Build
where Build was the name of the job in the gitlab-ci.yml file that I was trying to run. However, I always get this error:
ERROR: Job failed: Error response from daemon: pull access denied for gitlab-runner-helper, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied (executor_docker.go:166:1s)
FATAL: Error response from daemon: pull access denied for gitlab-runner-helper, repository does not exist or may require ‘docker login’: denied: requested access to the resource is denied (executor_docker.go:166:1s)
I can successfully log in via docker login
, and this error only appears after Pulling docker image gitlab-runner-helper:11.2.0 ...
. Does anybody have any advice on how I can debug this? Any information would be helpful
Thanks in advance!