abiosoft / colima

Container runtimes on macOS (and Linux) with minimal setup
MIT License
18.9k stars 382 forks source link

Colima with containerd runtime not exposing docker.sock #958

Open harel-e opened 8 months ago

harel-e commented 8 months ago

Description

I started colima with containerd runtime. I cannot connect to it with docker since it didn't expose a docker socket When I performed the same with docker runtime, it works fine.

Version

colima version 0.6.7 git commit: ba1be00e9aec47f2c1ffdacfb7e428e465f0b58a

runtime: docker arch: aarch64 client: v24.0.7 server: v24.0.7 limactl version 0.19.1 qemu-img version 8.2.0 Copyright (c) 2003-2023 Fabrice Bellard and the QEMU Project developers

Operating System

Output of colima status

INFO[0000] colima [profile=test] is running using macOS Virtualization.Framework INFO[0000] arch: aarch64 INFO[0000] runtime: containerd INFO[0000] mountType: virtiofs

Reproduction Steps

  1. colima start --vm-type vz --runtime containerd --cpu 2 test
  2. colima status

Expected behaviour

I expect colima to expose the docker.sock in the host OS and have it visible in colima status command, just like with docker runtime

Additional context

Sample output when using docker runtime

colima start --vm-type vz --runtime docker --cpu 2

colima status

INFO[0000] colima is running using macOS Virtualization.Framework INFO[0000] arch: aarch64 INFO[0000] runtime: docker INFO[0000] mountType: virtiofs INFO[0000] socket: unix:///Users/testing/.colima/default/docker.sock

tvh commented 8 months ago

I am having the same issue. Until this is resolved, it is still possible to talk to docker via SSH:

docker context create colima-ssh --docker "host=ssh://colima"
si458 commented 7 months ago

same here but im using an old macbook with osx 11, docker wont install so i have to use containerd edit: ignore me i can indeed run colima with docker and it works perfectly fine!

user@Users-MacBook-Pro ~ % colima version
colima version 0.6.8
git commit: 9b0809d0ed9ad3ff1e57c405f27324e6298ca04f

runtime: containerd
arch: x86_64
client: v1.7.3
server: 1.6.28
user@Users-MacBook-Pro ~ % colima status -e
INFO[0000] colima is running using QEMU                 
INFO[0000] arch: x86_64                                 
INFO[0000] runtime: containerd                          
INFO[0000] mountType: sshfs                             
INFO[0000] cpu: 2                                       
INFO[0000] mem: 2GiB                                    
INFO[0000] disk: 60GiB                                  
user@Users-MacBook-Pro ~ 
tharwan commented 4 months ago

Same issue here with 0.6.9

binary-signal commented 2 months ago

Same issue here with 0.6.9, I suspect the issue occurs when using containerd + vz vm on mac os m1

shucking commented 2 months ago

Same issue: m3 macos, colima 0.6.10

abiosoft commented 2 months ago

This is actually the expected behaviour for containerd runtime. Do you still want to keep using docker for containerd runtime?

tvh commented 2 months ago

This is actually the expected behaviour for containerd runtime. Do you still want to keep using docker for containerd runtime?

Yes. If I'm using the docker runtime and some kubernetes, docker is full of the kubernetes containers, making it a bit hard to work with. And vz is necessary for virtiofs.

elaijuh commented 1 month ago

Maybe I am missing something here, but why do you want to use docker with containerd runtime? nerdctl is there

Raboo commented 1 month ago

Maybe I am missing something here, but why do you want to use docker with containerd runtime? nerdctl is there

Not cool man! Not cool! Why does people feel the need to go into questions like "Why do you need this? Why don't you do it my way?". These type of questions are neither helpful or meaningful. Sure, offering an alternative is good, but everyone that installed colima knows about nerdctl. The README clearly refers to it. But the README also shows a video of using the docker cli with colima. So clearly there is a use case for it, using ssh instead of docker socket is a work-around, not a solution.

But to humor you. There are literally dozens if not more of popular tools that use the docker socket and expect it, build tools, ci tools and a bunch of other dev tools. There are even more tools that rely on the docker cli.

shucking commented 1 month ago

Maybe I am missing something here, but why do you want to use docker with containerd runtime? nerdctl is there

Not cool man! Not cool! Why does people feel the need to go into questions like "Why do you need this? Why don't you do it my way?". These type of questions are neither helpful or meaningful. Sure, offering an alternative is good, but everyone that installed colima knows about nerdctl. The README clearly refers to it. But the README also shows a video of using the docker cli with colima. So clearly there is a use case for it, using ssh instead of docker socket is a work-around, not a solution.

But to humor you. There are literally dozens if not more of popular tools that use the docker socket and expect it, build tools, ci tools and a bunch of other dev tools. There are even more tools that rely on the docker cli.

Maybe I am missing something here, but why do you want to use docker with containerd runtime? nerdctl is there

Not cool man! Not cool! Why does people feel the need to go into questions like "Why do you need this? Why don't you do it my way?". These type of questions are neither helpful or meaningful. Sure, offering an alternative is good, but everyone that installed colima knows about nerdctl. The README clearly refers to it. But the README also shows a video of using the docker cli with colima. So clearly there is a use case for it, using ssh instead of docker socket is a work-around, not a solution.

But to humor you. There are literally dozens if not more of popular tools that use the docker socket and expect it, build tools, ci tools and a bunch of other dev tools. There are even more tools that rely on the docker cli.

Where is this aggression coming from? In OSS and industry, it's important to understand the reason behind feature requests because time isn't cheap. The why is essential. I'm surprised so much offence was taken.

Raboo commented 1 month ago

The aggression comes from the fact that @abiosoft already asked:

Do you still want to keep using docker for containerd runtime?

After someone already answered yes to that, @elaijuh is is then questioning that answer and basically in nicer words stupidifying the person that answered yes and indirectly saying that he shouldn't use docker cli... At least that is how it felt to me with the comment "nerdctl is there". It is a snide comment and there is where the aggression started.

I've seen this behavior before, and it discourages people. So after seeing that I just wanted to shoot it down directly. But you are right in understanding the why, and ignoring the snide comment would have been the best course of action.

With that said, I won't continue this discussion any more in this issue to avoid hijacking it. If you feel the need to have a last word or discussing further in this topic, then I'm on Kubernetes slack. But really, I don't want to bother.

I apologize for falling into the troll trap.

binary-signal commented 1 week ago

Lots of software, for better or worse, expects a docker.sock file to work with, even though we are using containerd. One good example of this is JetBrains IDEs.