added jupyter

This commit is contained in:
dominikhoebert 2024-08-02 15:33:16 +02:00
parent b9de10cc62
commit c13ab3365d
2 changed files with 24 additions and 1 deletions

View File

@ -74,6 +74,7 @@ docker network create --driver bridge proxy
- stirlingpdf 8092 - stirlingpdf 8092
- redis 6379 - redis 6379
- tinyfilemanager 8091 - tinyfilemanager 8091
- jupytherlab 8888
- vaultwarden - vaultwarden
- cyberchef - cyberchef
- https://it-tools.tech/ - https://it-tools.tech/

22
jupyter/compose.yml Normal file
View File

@ -0,0 +1,22 @@
# https://jupyter.org/
# https://jupyter.org/try-jupyter/lab/
# web-based interactive development environment for notebooks, code, and data. It supports over 40 programming languages, big data integration, and a multi-user version of the notebook called JupyterHub
name: jupyter
services:
jupyter:
image: jupyter/datascience-notebook:latest
container_name: jupyter
ports:
- 8888:8888
environment:
JUPYTER_ENABLE_LAB: "yes"
JUPYTER_TOKEN: "changeme"
networks:
- proxy
networks:
proxy:
external: true