Skip to content

Commit

Permalink
Merge pull request #47 from data-catering/jupyter
Browse files Browse the repository at this point in the history
Add in jupyter notebook
  • Loading branch information
pflooky authored Jul 4, 2024
2 parents 19a5570 + 5d2ab37 commit 56fde20
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | ✅ |
Expand Down
9 changes: 8 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

"services":
"activemq":
"container_name": "activemq"
Expand Down Expand Up @@ -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":
Expand Down

0 comments on commit 56fde20

Please sign in to comment.