Hi all,
Need a quick hint:
# MacBook → Cloudron box (works)
ssh -R 172.18.0.1:11434:localhost:11434 <user>@<server>
# On the Cloudron host (works)
curl localhost:11434 # → “Ollama is running”
# Inside my Cloudron app (times out)
cloudron exec --app <app> -- curl 172.18.0.1:11434
Goal: let the app reach Ollama on my Mac via that tunnel.
Host sees it, container doesn’t. What’s the right bind/IP/firewall tweak so the container can hit the tunnel?
Thanks!