Update README, Dockerfile, requirements, and add docker-compose for Jupyter Notebook setup
This commit is contained in:
+22
@@ -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
|
||||
Reference in New Issue
Block a user