forked from MarcellM01/TinySearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.quickstart.yaml
More file actions
41 lines (37 loc) · 812 Bytes
/
Copy pathcompose.quickstart.yaml
File metadata and controls
41 lines (37 loc) · 812 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
name: tinysearch
services:
searxng:
image: searxng/searxng:latest
restart: unless-stopped
configs:
- source: searxng_settings
target: /etc/searxng/settings.yml
tinysearch:
image: marcellm01/tinysearch:latest
restart: unless-stopped
ports:
- "8000:8000"
shm_size: "1gb"
volumes:
- models:/data/models
environment:
MCP_TRANSPORT: streamable-http
MCP_HOST: 0.0.0.0
MCP_PORT: 8000
SEARXNG_URL: http://searxng:8080/search
depends_on:
- searxng
configs:
searxng_settings:
content: |
use_default_settings: true
search:
formats:
- html
- json
server:
secret_key: "tinysearch-local-only"
limiter: false
image_proxy: false
volumes:
models: