Jupyter Notebooks using Jupyter Docker Stacks
Add, remove packages in requirements.txt
as your need.
docker build -t notebook-basic ./basic
docker build -t notebook-scrapping ./scrapping
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>