-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (45 loc) · 1.37 KB
/
Copy pathdocker-compose.yml
File metadata and controls
48 lines (45 loc) · 1.37 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
version: '3.8'
services:
hos-ls:
build:
context: .
dockerfile: Dockerfile
image: hos-ls:latest
container_name: hos-ls-scanner
volumes:
- ./src:/app/src:ro
- ./config:/app/config:ro
- ./prompts:/app/prompts:ro
- ./output:/output
- ./cache:/cache
environment:
- HOS_LS_AI__PROVIDER=${HOS_LS_AI__PROVIDER:-deepseek}
- HOS_LS_AI__MODEL=${HOS_LS_AI__MODEL:-deepseek-v4-flash}
- HOS_LS_AI__API_KEY=${DEEPSEEK_API_KEY:-}
- HOS_LS_AI__BASE_URL=${HOS_LS_AI__BASE_URL:-https://api.deepseek.com}
- HOS_LS_DEBUG=false
command: scan /app/src -f html -o /output/report.html
hos-ls-interactive:
image: hos-ls:latest
container_name: hos-ls-interactive
volumes:
- .:/workspace
- ./output:/output
working_dir: /workspace
stdin_open: true
tty: true
entrypoint: ["/bin/bash"]
hos-ls-ci:
image: hos-ls:latest
container_name: hos-ls-ci
volumes:
- .:/workspace:ro
- ./output:/output
working_dir: /workspace
environment:
- HOS_LS_AI__PROVIDER=${HOS_LS_AI__PROVIDER:-deepseek}
- HOS_LS_AI__MODEL=${HOS_LS_AI__MODEL:-deepseek-v4-flash}
- HOS_LS_AI__API_KEY=${DEEPSEEK_API_KEY:-}
- HOS_LS_AI__BASE_URL=${HOS_LS_AI__BASE_URL:-https://api.deepseek.com}
- HOS_LS_QUIET=true
command: scan . -f sarif -o /output/results.sarif