-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dive always fail when trying to fetch local image #462
Comments
This means it will try to pull an image named Could you please post the output of Also, which version of |
Hi @mark2185 , dive version: |
I suspect this is the same issue resolved by #453 (comment) . It happens when newer versions of Docker Desktop are installed without admin privileges on macOS. |
@jmbowman interesting, perhaps it has something to do with the docker client I am using then. We are not allowed to use Docker Desktop so we have an internal docker client, may that be the cause? |
maybe also related to: #452 |
I have the same issue on macOS. Using |
Hi, DOCKER_CERT_PATH=$(docker context inspect -f '{{ .Storage.TLSPath }}/docker')
DOCKER_HOST=$(docker context inspect -f '{{ .Endpoints.docker.Host }}')
DOCKER_TLS_VERIFY=1
export DOCKER_CERT_PATH DOCKER_HOST DOCKER_TLS_VERIFY After doing that, I could use maybe you want to take a look about these variables with the dev of |
Hi @joaocasarin, I am using colima too and just found I have the same problem. Are you saying I should export those variables and see if this works for colima as well? Thanks! EDIT: I tried this and this is the error that was raised:
I am not sure where colima stores the certificates.. |
Hi, actually I use our own internal implementation of docker engine, not Colima. I was told about those variables so we could use Dive, but probably the developers of Colima should know better what to do in order to get it working as well... Perhaps you open an issue on Colima's repo and mention this thread? |
Setting
|
I have a local image called
jcasarin:t
with idd18bf00f8397
. When I rundive d18bf00f8397
ordive jcasarin:t
it always fail with the following response:Although
fetching image
doesn't necessarily means it is pulling from docker hub, it does seem to be trying to do that.I have already ran
docker login docker.io
and alsodocker login <my_company_docker_registry>
and both are already authenticated, but still get that deny error.PS.: I did not push the image to any registry, it is just local!
The text was updated successfully, but these errors were encountered: