Skip to content

Instantly share code, notes, and snippets.

@emcrisostomo
Created January 17, 2024 15:30
Show Gist options
  • Save emcrisostomo/dc28855877f25e35a9a6162ae9cb4f2f to your computer and use it in GitHub Desktop.
Save emcrisostomo/dc28855877f25e35a9a6162ae9cb4f2f to your computer and use it in GitHub Desktop.
Publish Rancher Desktop docker daemon on tcp://0.0.0.0:2375
See: https://github.com/rancher-sandbox/rancher-desktop/discussions/2304
docker run -d --restart=always \
-p 0.0.0.0:2375:2375 \
-v /var/run/docker.sock:/var/run/docker.sock \
alpine/socat \
tcp-listen:2375,fork,reuseaddr unix-connect:/var/run/docker.sock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment