-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 942 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (37 loc) · 942 Bytes
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
version: '3.8'
services:
backend:
build: ./backend
container_name: axi-agent-platform-backend
ports:
- "8001:8000"
environment:
- DEBUG=false
- HOST=0.0.0.0
- PORT=8000
- DATABASE_URL=sqlite+aiosqlite:///./data/axi_agent_platform.db
- VECTOR_DB_PATH=./data/chroma_db
- MINIMAX_API_KEY=${MINIMAX_API_KEY}
- MINIMAX_API_URL=${MINIMAX_API_URL:-https://api.minimaxi.com/v1}
- OPENAI_API_KEY=${OPENAI_API_KEY}
- SECRET_KEY=${SECRET_KEY:-your-secret-key}
volumes:
- ./data:/app/data
networks:
- axi-agent-platform-network
restart: unless-stopped
frontend:
build: ./frontend
container_name: axi-agent-platform-frontend
ports:
- "8080:80"
depends_on:
- backend
networks:
- axi-agent-platform-network
restart: unless-stopped
networks:
axi-agent-platform-network:
driver: bridge
volumes:
data: