Running Pluto from docker #1043
-
I am trying to run Pluto from Julia docker image and access the web page from outside the container. However I am not able to do so, here are the steps and error I see:
in the same container session I can access the Pluto web interface
However outside the container I can't
Here's configuration for the docker container.
Is there anything I am missing? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
It is likely the authentication that Pluto requires, and which is done automatically if you start it 'the normal way'. There's an example on how to bypass that here https://github.com/StatisticalMice/julia-jupyter-docker/blob/main/1.6-buster/jupyter_notebook_config.py, but the syntax there is for Jupyter. Just turning off authentication is not ideal, but it's ok at least if it's going through Jupyter. |
Beta Was this translation helpful? Give feedback.
It is likely the authentication that Pluto requires, and which is done automatically if you start it 'the normal way'.
There's an example on how to bypass that here https://github.com/StatisticalMice/julia-jupyter-docker/blob/main/1.6-buster/jupyter_notebook_config.py, but the syntax there is for Jupyter.
Just turning off authentication is not ideal, but it's ok at least if it's going through Jupyter.