mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
added jupyter
This commit is contained in:
parent
b9de10cc62
commit
c13ab3365d
@ -74,6 +74,7 @@ docker network create --driver bridge proxy
|
||||
- stirlingpdf 8092
|
||||
- redis 6379
|
||||
- tinyfilemanager 8091
|
||||
- jupytherlab 8888
|
||||
- vaultwarden
|
||||
- cyberchef
|
||||
- https://it-tools.tech/
|
||||
|
22
jupyter/compose.yml
Normal file
22
jupyter/compose.yml
Normal 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user