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