-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
95 lines (90 loc) · 1.97 KB
/
Copy pathdocker-compose.yml
File metadata and controls
95 lines (90 loc) · 1.97 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: '3.8'
services:
# llama.cpp server - LLM inference engine
llama-server:
image: ghcr.io/ggerganov/llama.cpp:server
container_name: intellistant-llama
volumes:
- ./models:/models:ro
command: >
--model /models/qwen2.5-coder-3b/instruct-q4_k_m.gguf
--host 0.0.0.0
--port 8080
--n-gpu-layers 99
--ctx-size 4096
--threads 4
ports:
- "8080:8080"
networks:
- intellistant-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
interval: 10s
timeout: 5s
retries: 5
start_period: 30s
deploy:
resources:
limits:
memory: 8G
reservations:
memory: 4G
# Intellistant API Server
intellistant-api:
build:
context: .
dockerfile: Dockerfile
container_name: intellistant-api
depends_on:
llama-server:
condition: service_healthy
environment:
- LLAMA_HOST=llama-server
- LLAMA_PORT=8080
- API_PORT=8000
ports:
- "8000:8000"
volumes:
- ./logs:/app/logs
- ./data:/app/data
networks:
- intellistant-network
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 10s
timeout: 5s
retries: 3
start_period: 10s
restart: unless-stopped
deploy:
resources:
limits:
memory: 500M
reservations:
memory: 100M
# Intellistant CLI (optional, for interactive use)
intellistant-cli:
build:
context: .
dockerfile: Dockerfile
container_name: intellistant-cli
depends_on:
llama-server:
condition: service_healthy
environment:
- LLAMA_HOST=llama-server
- LLAMA_PORT=8080
command: ./intellistant_cli
stdin_open: true
tty: true
networks:
- intellistant-network
profiles:
- cli
networks:
intellistant-network:
driver: bridge
volumes:
models:
logs:
data: