Sign inSign up

bigdatateam/yarn-notebook

By bigdatateam

•Updated about 8 years ago

Image
18

4.9K

bigdatateam/yarn-notebook repository overview

The starter notebooks is located in the home directory (/home/jovyan).

To run container you need to install docker and then execute:

docker run -it --rm -v YYYYYY:/home/jovyan/dir_on_host -p XXXX:8888 bigdatateam/yarn-notebook

-it allows to see the information from the container

--rm means that the container will be deleted after exiting/terminating

-v means that the files from the Jupyter of the container will be transferred to the local file system directory YYYYYY

YYYYYY - a local path, for example, for Linux $(pwd)/bigdata, $(pwd) - the path to the current directory

(--rm and -v YYYYYY:/home/jovyan/dir_on_host can be safely removed if it is not needed.)

-p XXXX:8888 allows to connect to the Jupyter of the container on 127.0.0.1:XXXX or localhost:XXXX, XXXX - a port number of the local system

-p AAAA:8088 allows to connect to the YARN web UI of the container on 127.0.0.1:AAAA or localhost:AAAA, AAAA - a port number of the local system (if you do not need this UI, delete this option)

For more options see the "docker run" documentation page⁠.

Tag summary

Content type

Image

Digest

Size

1.7 GB

Last updated

about 8 years ago

docker pull bigdatateam/yarn-notebook