Document how to use dive with M1 and colima? · Issue #408 · wagoodman/dive (original) (raw)
I build an image, let's call it new_1
:
$ docker images REPOSITORY TAG IMAGE ID CREATED SIZE new_1 latest f2c3c30fca2d About an hour ago 179MB ...
and would like to dive into it, but it fails:
$ dive new_1 Image Source: docker://new_1 Fetching image... (this can take a while for large images) Handler not available locally. Trying to pull 'new_1'... Using default tag: latest Error response from daemon: pull access denied for new_1, repository does not exist or may require 'docker login': denied: requested access to the resource is denied cannot fetch image exit status 1
What is the exact issue here, and what can I do to make it work (if anything?). It does work with:
docker save new_1 > new_1.tar dive docker-archive://new_1.tar
that I stole from #397 (comment), but is it the only way?