diff --git a/README.md b/README.md index 62d233d..2898c17 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,7 @@ POSTGRES_USER=my-user POSTGRES_PASSWORD=my-password ./run.sh postgres | Messaging | kafka | ✅ | | Messaging | rabbitmq | ✅ | | Messaging | solace | ✅ | +| Notebook | jupyter | ✅ | | Object Storage | minio | ✅ | | Query Engine | duckdb | ✅ | | Query Engine | flight-sql | ✅ | diff --git a/docker-compose.yaml b/docker-compose.yaml index 2859b3d..133c37c 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -1,4 +1,3 @@ - "services": "activemq": "container_name": "activemq" @@ -450,6 +449,14 @@ "image": "kennethreitz/httpbin:${HTTPBIN_VERSION:-latest}" "ports": - "80:80" + "jupyter": + "command": ["jupyter", "notebook", "--no-browser", "--NotebookApp.token=''", "--NotebookApp.password=''"] + "container_name": "jupyter" + "image": "quay.io/jupyter/minimal-notebook:2024-07-02" + "ports": + - "8888:8888" + "volumes": + - "./data/jupyter/persist:/home/jovyan/work" "kafka": "container_name": "kafka-data" "depends_on":