I am trying to test a job locally with the circleci cli: circleci local execute --job <JOB_NAME>
I have Docker running on my computer and am signed into an account that has access to the images referenced by the circleci job. I have even managed to pull the images manually onto my local docker.
This is the error I get when running the circleci cli command for running the job locally:
Error response from daemon: pull access denied for <IMAGE_NAME>, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
My ./circleci/config.yml
contains auth
entries with $DOCKERHUB_USER
and $DOCKERHUB_PASSWORD
but I am not entirely sure where/how to set those locally.
Any thoughts?