Skip to content

tinnguyentg/jupyter-notebooks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Jupyter Notebooks

Jupyter Notebooks using Jupyter Docker Stacks

Build docker images

Add, remove packages in requirements.txt as your need.

docker build -t notebook-basic ./basic
docker build -t notebook-scrapping ./scrapping

Start notebook

Customize your notes volume and docker container name, port.

mkdir -p ~/notes
docker run\
    -it --rm --user root\
    -d -p 9000:8888\
    -v ~/notes:/home/jovyan/work/\
    --name notebook\
    -t notebook-basic\
    start-notebook.sh\
    --NotebookApp.token=''\
    --NotebookApp.notebook_dir=/home/jovyan/work

If can not open new notebook (File Permission), run following command

sudo chown -R $USER:$USER <notes-volume>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published