-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (30 loc) · 858 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
33 lines (30 loc) · 858 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
version: "3.8"
services:
# ── Ollama (local LLM) ─────────────────────────────────────
ollama:
image: ollama/ollama:latest
ports:
- "11434:11434"
volumes:
- ollama_data:/root/.ollama
restart: unless-stopped
healthcheck:
test: ["CMD", "ollama", "--version"]
interval: 30s
timeout: 10s
retries: 3
# ── ARES full-app demo ─────────────────────────────────────
ares-demo:
build:
context: .
dockerfile: Dockerfile.demo
ports:
- "8080:8080"
environment:
- OLLAMA_HOST=http://ollama:11434
depends_on:
ollama:
condition: service_healthy
restart: unless-stopped
volumes:
ollama_data: