From c13ab3365d2cd2d8ccd2af3175c5502d1eaeec76 Mon Sep 17 00:00:00 2001 From: dominikhoebert <42839893+dominikhoebert@users.noreply.github.com> Date: Fri, 2 Aug 2024 15:33:16 +0200 Subject: [PATCH] added jupyter --- README.md | 3 ++- jupyter/compose.yml | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 jupyter/compose.yml diff --git a/README.md b/README.md index dfc37a6..1970807 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,8 @@ docker network create --driver bridge proxy - stirlingpdf 8092 - redis 6379 - tinyfilemanager 8091 -- vaultwarden +- jupytherlab 8888 +- vaultwarden - cyberchef - https://it-tools.tech/ - https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose diff --git a/jupyter/compose.yml b/jupyter/compose.yml new file mode 100644 index 0000000..345cd7a --- /dev/null +++ b/jupyter/compose.yml @@ -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 + \ No newline at end of file