How severe does this issue affect your experience of using Ray?
- Low: It annoys or frustrates me for a moment.
Hi there,
I’m trying to execute serve run
inside the official container (ray:latest-py39-cpu) and noticed that the HTTP requests outside the container can’t get through (-p
is specified in docker run
). Later I realised that serve run
binds to 127.0.0.1
by default, which is supposed to be only local to the container itself. I made a few unsuccessful attempts in specifying --host
option mentioned in serve run
; ray discards the new IP because it’s “different” from the global one. Being new to ray, I hope I used the CLI correctly. Although using the host network in docker run
could work around the issue, it’s probably undesired for the sake of isolation. Perhaps there is a better way to deal with the issue? Thanks in advance!
Kai