Skip to content

does not work with colima engine #397

Closed
@jeffzyliu

Description

@jeffzyliu

I built the same image on colima and docker desktop (Intel mac), and only the docker one worked. It sounds like lima isn't supported yet, so I'd like to request that feature in the future!

Activity

jhogendorn

jhogendorn commented on May 10, 2022

@jhogendorn

I have also started swapping to colima due to docker-desktop reliability being pretty bad, and would love colima support.

In the meantime, you can run:

docker save myimage > image.tar
dive docker-engine://image.tar

sammcj

sammcj commented on May 11, 2022

@sammcj

@jhogendorn dive docker-engine://image.tar doesn't seem to work for me after saving an image to a tar:

docker save my-valid-image:latest > image.tar

dive docker-engine://image.tar
Image Source: docker://docker-engine://image.tar
Fetching image... (this can take a while for large images)
Handler not available locally. Trying to pull 'docker-engine://image.tar'...
invalid reference format
cannot fetch image
exit status 1
jhogendorn

jhogendorn commented on May 11, 2022

@jhogendorn

oh, apologies i mistyped.

dive docker-archive://image.tar

ikunali

ikunali commented on Jul 27, 2022

@ikunali

A simple fix for this right now is just running sudo ln -sf ~/.colima/docker.sock /var/run/docker.sock every time after colima start

saileshkotha

saileshkotha commented on Aug 1, 2022

@saileshkotha

A simple fix for this right now is just running sudo ln -sf ~/.colima/docker.sock /var/run/docker.sock every time after colima start

this works for me

Trekoid

Trekoid commented on Aug 30, 2022

@Trekoid

If you setup the DOCKER_HOST environment variable to point to colima in your shell configuration, dive (and other docker tools) will work out of the box. No need to manually update a symbolic link.

  1. Find the configuration file for your shell.
    • The default shell is Zsh on Macs. Your terminal configuration file is the ~/.zshrc file.
    • If you switched to Bash, your terminal configuration file is ~/.bashrc.
  2. Add export DOCKER_HOST=unix://$HOME/.colima/docker.sock to the file.
  3. Save and exit.
  4. Start a new terminal or run source ~/.zshrc or source ~/.bashrc to apply the changes to the existing terminal session.
ErlanBelekov

ErlanBelekov commented on Sep 5, 2022

@ErlanBelekov

+1

wujek-srujek

wujek-srujek commented on Feb 19, 2023

@wujek-srujek

According to colima FAQ what is missing in dive is support for Docker contexts (https://github.com/abiosoft/colima/blob/main/docs/FAQ.md#cannot-connect-to-the-docker-daemon-at-unixvarrundockersock-is-the-docker-daemon-running):
However, some applications are not aware of Docker contexts and may lead to the error.

added 2 commits that reference this issue on Nov 7, 2024
ad49b78
77d530d

4 remaining items

Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Participants

    @jhogendorn@wagoodman@sammcj@Trekoid@wujek-srujek

    Issue actions

      does not work with colima engine · Issue #397 · wagoodman/dive