-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
54 lines (49 loc) · 1.04 KB
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
# Jupyter LLM docker compose by Matthew Printz
version: '3'
networks:
beaker-net:
driver: bridge
services:
jupyter:
build:
dockerfile: Dockerfile
context: .
ports:
- "8888:8888"
environment:
- DEBUG=1
- JUPYTER_SERVER=http://jupyter:8888
- JUPYTER_TOKEN=89f73481102c46c0bc13b2998f9a4fce
- ENABLE_USER_PROMPT=true
- OPENAI_API_KEY
volumes:
# - ./beaker_kernel:/usr/local/share/jupyter/kernels/beaker_kernel
# - ./beaker_kernel:/usr/local/share/jupyter/kernels/beaker_kernel
# - .:/jupyter
- .:/bio_context
command:
[
"python",
"-m",
"beaker_kernel.server.dev",
"--ip",
"0.0.0.0",
"-y",
"watch"
]
networks:
- beaker-net
chromadb:
image: chromadb/chroma:latest
environment:
- IS_PERSISTENT=TRUE
volumes:
- ./chromadb_functions:/chroma/chroma/
ports:
- 8000:8000
networks:
- beaker-net
# volumes:
# chroma-data:
# driver: local