22 lines
517 B
YAML
22 lines
517 B
YAML
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 |