-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
43 lines (40 loc) · 873 Bytes
/
docker-compose.yml
File metadata and controls
43 lines (40 loc) · 873 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
42
43
version: "3.8"
services:
searxng:
image: searxng/searxng:latest
ports:
- "8888:8080"
volumes:
- ./searxng.yml:/etc/searxng/settings.yml:ro
environment:
- SEARXNG_BASE_URL=http://localhost:8888
cap_add:
- SYS_ADMIN
networks:
- searxng-net
restart: unless-stopped
app:
build: .
ports:
- "8000:8000"
environment:
- SEARXNG_API_BASE=http://searxng:8080
- ALLOWED_ORIGINS=http://localhost:3000
- ARTEMIS_API_KEY=${ARTEMIS_API_KEY:-}
- ENABLE_SUMMARY=true
- SUMMARY_MODEL=qwen3.5:27b
# Add your API key:
# - OPENAI_API_KEY=sk-...
depends_on:
- searxng
networks:
- searxng-net
restart: unless-stopped
deploy:
resources:
limits:
cpus: "2"
memory: 4G
networks:
searxng-net:
driver: bridge