You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
More specifically, they do not work unless the container is running in host network mode.
The problem seems to be that the PlotlyServer baseUrl is using a hostname that is internal to the docker container but the value is being passed to the JavaScript which is running in an external network.
The text was updated successfully, but these errors were encountered:
@alonalbert I've pushed a commit that possibly addresses the issue. It allows setting override host and port (not for Jupyter). If you can check it, please let me know.
I'll check when I get a chance, though I'm not sure it will be enough.
Keep in mind that the hostname might not be a static value. For a running
server, i can access it via different hostnames. Local IP, local hostname,
hostname alias, public IP, public IP with different port etc
I suspect you need something that gets the actual hostname and IP that the
JavaScript actually is using, not a static setting.
Perhaps you already did that, i didn't look at the commit.
It takes the URI from the request and then transforms it. So the actual address embedded in the page is depending on where the page has been requested from. I am just not sure, how it will work with multiple interfaces. Your suggestions are welcome.
More specifically, they do not work unless the container is running in host network mode.
The problem seems to be that the PlotlyServer baseUrl is using a hostname that is internal to the docker container but the value is being passed to the JavaScript which is running in an external network.
The text was updated successfully, but these errors were encountered: