-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
49 lines (43 loc) · 1.21 KB
/
docker-compose.yaml
File metadata and controls
49 lines (43 loc) · 1.21 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
49
services:
search_chat:
container_name: search_chat
image: docker.cnb.cool/aigc/searchchat
environment:
# Server Configuration
- PORT=3000
# Search Engine API Keys (configure as needed)
- BING_SEARCH_KEY=
- GOOGLE_SEARCH_KEY=
- GOOGLE_SEARCH_ID=
- TAVILY_KEY=
- ZHIPU_KEY=
- EXA_KEY=
- BOCHA_KEY=
# Web Content Extraction (optional)
- JINA_KEY=
# SearXNG Configuration (included by default, ready to use)
- SEARXNG_HOSTNAME=http://searxng:8080
- SEARXNG_SAFE=0
- SEARXNG_LANGUAGE=
- SEARXNG_ENGINES=bing,google
- SEARXNG_IMAGES_ENGINES=bing,google
# DeepResearch Configuration
- DEEP_MAX_RESEARCH_LOOPS=3
- DEEP_NUMBER_OF_INITIAL_QUERIES=3
# Domain Whitelist (optional)
- WHITELIST_DOMAINS=
volumes:
- ./model.json:/app/apps/server/dist/model.json
ports:
- "3000:3000"
restart: always
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: always
# ports:
# - "127.0.0.1:8080:8080"
volumes:
- ./searxng:/etc/searxng:rw
environment:
- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/