-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (36 loc) · 860 Bytes
/
docker-compose.yml
File metadata and controls
41 lines (36 loc) · 860 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:
code2logic:
build: .
image: code2logic:latest
volumes:
- ./:/project:ro
- ./output:/output
command: ["/project", "-f", "csv", "-d", "standard", "-o", "/output/analysis.csv"]
# Development container with all tools
code2logic-dev:
build:
context: .
dockerfile: Dockerfile.dev
image: code2logic:dev
volumes:
- ./:/app
- ./output:/output
working_dir: /app
command: ["bash"]
stdin_open: true
tty: true
# LiteLLM proxy for unified API
litellm:
image: ghcr.io/berriai/litellm:main-latest
ports:
- "4000:4000"
environment:
- OLLAMA_API_BASE=http://localhost:11434
volumes:
- ./litellm_config.yaml:/app/config.yaml
command: ["--config", "/app/config.yaml"]
depends_on:
- ollama
volumes:
ollama_data: