-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (27 loc) · 919 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
30 lines (27 loc) · 919 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
name: ops
services:
ops:
build:
context: .
dockerfile: Dockerfile
image: ops-local:latest
container_name: ops
env_file:
- .env
environment:
LLM_API_KEY: ${DOCKER_LLM_API_KEY:-ollama}
LLM_BASE_URL: ${DOCKER_LLM_BASE_URL:-http://host.docker.internal:11434/v1}
LLM_MODEL_NAME: ${DOCKER_LLM_MODEL_NAME:-qwen2.5:7b}
LLM_BOOST_API_KEY: ${DOCKER_LLM_BOOST_API_KEY:-ollama}
LLM_BOOST_BASE_URL: ${DOCKER_LLM_BOOST_BASE_URL:-http://host.docker.internal:11434/v1}
LLM_BOOST_MODEL_NAME: ${DOCKER_LLM_BOOST_MODEL_NAME:-qwen2.5:7b}
ports:
- "3200:3000"
- "5001:5001"
restart: unless-stopped
volumes:
- ./backend/uploads:/app/backend/uploads
- ./backend/app:/app/backend/app
- ./backend/run.py:/app/backend/run.py
- ./frontend/src:/app/frontend/src
- ./frontend/index.html:/app/frontend/index.html