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/demo-course0
-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 transfered to the local file system directory YYYYYY
YYYYYY - a local path, for example, for Linux $(pwd)/bigdata, $(pwd) - the path to the current directory
-p 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
--rm and -v YYYYYY:/home/jovyan can be safely removed if it is not needed.
For more options see the "docker run" documentation page.
Content type
Image
Digest
Size
1.7 GB
Last updated
almost 9 years ago
docker pull bigdatateam/demo-course0