Update README, Dockerfile, requirements, and add docker-compose for Jupyter Notebook setup

This commit is contained in:
2025-05-05 13:16:51 +02:00
parent 3adb65fa36
commit ad7b06e930
4 changed files with 108 additions and 17 deletions
+22
View File
@@ -0,0 +1,22 @@
services:
jupyter:
profiles: ["build", "registry"]
image: https://git.seccodesmith.pl/seccodesmith/Jupyter-my-own-image.git
build:
context: .
dockerfile: Dockerfile
ports:
- "8888:8888"
volumes:
- ./notebooks:/notebooks
environment:
- JUPYTER_ENABLE_LAB=yes
restart: unless-stopped
command: >
jupyter notebook
--ip='0.0.0.0'
--port=8888
--no-browser
--NotebookApp.token=''
--NotebookApp.password=''
--allow-root