-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (34 loc) · 986 Bytes
/
docker-compose.yml
File metadata and controls
37 lines (34 loc) · 986 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
version: '3.8'
services:
backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: coding-agent-backend
ports:
- "8000:8000"
environment:
- VLLM_REASONING_ENDPOINT=${VLLM_REASONING_ENDPOINT:-http://host.docker.internal:8001/v1}
- VLLM_CODING_ENDPOINT=${VLLM_CODING_ENDPOINT:-http://host.docker.internal:8002/v1}
- REASONING_MODEL=${REASONING_MODEL:-deepseek-ai/DeepSeek-R1}
- CODING_MODEL=${CODING_MODEL:-Qwen/Qwen3-8B-Coder}
- API_HOST=0.0.0.0
- API_PORT=8000
- CORS_ORIGINS=http://localhost:3000,http://localhost:80
- LOG_LEVEL=INFO
extra_hosts:
- "host.docker.internal:host-gateway"
restart: unless-stopped
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: coding-agent-frontend
ports:
- "80:80"
depends_on:
- backend
restart: unless-stopped
networks:
default:
name: coding-agent-network