forked from Josh-XT/AGiXT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
43 lines (43 loc) · 1.11 KB
/
docker-compose.yml
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
version: "3.7"
services:
agixt:
image: joshxt/agixt:latest
init: true
environment:
- DB_CONNECTED=false
- UVICORN_WORKERS=${UVICORN_WORKERS:-10}
- AGIXT_API_KEY=${AGIXT_API_KEY}
- TOKENIZERS_PARALLELISM=False
ports:
- "7437:7437"
volumes:
- ./models:/model
- ./agixt/WORKSPACE:/agixt/WORKSPACE
- ./agixt/agents:/agixt/agents
- ./agixt/prompts:/agixt/prompts
- ./agixt/chains:/agixt/chains
- ./agixt/memories:/agixt/memories
- ./agixt/conversations:/agixt/conversations
- ./.env:/.env
streamlit:
image: joshxt/streamlit:latest
depends_on:
- agixt
environment:
- AGIXT_URI=${AGIXT_URI:-http://agixt:7437}
- AGIXT_API_KEY=${AGIXT_API_KEY}
volumes:
- ./agixt/WORKSPACE:/app/WORKSPACE
ports:
- "8501:8501"
nextjs:
image: joshxt/agixt-nextjs:latest
depends_on:
- agixt
environment:
- NEXT_PUBLIC_API_URL=${AGIXT_URI:-http://agixt:7437}
- NEXT_PUBLIC_API_KEY=${AGIXT_API_KEY}
ports:
- "24498:24498"
volumes:
- ./agixt/WORKSPACE:/app/WORKSPACE