Expose Port 2375 on Rancher Dekstop
TL;DR To expose Docker socket over port 2375 on Rancher Desktop, you need to manually run a container using the alpine/socat image. You can directly obtain the image from docker hub (https://hub.docker.com/r/alpine/socat) and run it on your host machine with below command docker run -d --restart always -v /var/run/docker.sock:/var/run/docker.sock -p 2375:2375 --name expose-docker-on-2375 alpine/socat If you’ve been working with Docker on Windows for a there is big chance that you are aleready using Rancher Desktop instead of Docker Desktop after the licensing change Docker did in 2021. ...