Open
Description
In order to successfully install examples using Docker I did the following changes:
- There seems to be missing step which clones
mli-resources
GitHub repository. PerhapsRUN git clone https://github.com/h2oai/mli-resources.git
should be added toDockerfile
(I cloned repo manually). - Jupyter refuses to start under root - consider adding
--allow-root
parameter:docker run -i -t -p 8888:8888 <image_id> /bin/bash -c "/opt/conda/bin/conda install jupyter -y --quiet && /opt/conda/bin/jupyter notebook --notebook-dir=/mli-resources --ip='*' --port=8888 --no-browser --allow-root"
and/or suggest to run it under a normal user. - Perhaps it would be worth to suggest user to use URL provided by Jupyter after it starts - it contains auth token (
README.md
, step 9.).