I have been launching Jupyter Notebook for years using the following command:
jupyter-notebook --port=7000 --no-browser --no-mathjax
When I t
For me, the solutions described above was not applicable in Docker.
The following solution works like a charm on Linux:
Details:
tensorflow/tensorflow:latest-py3-jupyterSteps to start Jupyter in Docker with your pre-defined password:
export JUPYTER_TOKEN='password'docker run -it --rm -p 8888:8888 -u $(id -u ${USER}):$(id -g ${USER}) -e JUPYTER_TOKEN=$JUPYTER_TOKEN -v /home//jupyter:/tf/ tensorflow/tensorflow:latest-py3-jupyter For me, that is the easiest way to get rid of the annoying token authentication.