forked from johnfkraus/docsray-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-bisync-http-only.yml
More file actions
51 lines (47 loc) · 1.1 KB
/
docker-compose-bisync-http-only.yml
File metadata and controls
51 lines (47 loc) · 1.1 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
50
51
# Docker Compose for Docsray MCP Server
# Production and development configurations
version: '3.8'
services:
docsray-http:
build:
context: .
dockerfile: Dockerfile
target: runtime
container_name: docsray-http
restart: unless-stopped
ports:
- "3000:3000"
environment:
- DOCSRAY_TRANSPORT=http
- DOCSRAY_HTTP_HOST=0.0.0.0
- DOCSRAY_HTTP_PORT=3000
- DOCSRAY_LOG_LEVEL=INFO
- DOCSRAY_PYMUPDF_ENABLED=true
- DOCSRAY_CACHE_ENABLED=true
volumes:
- docsray-cache:/app/cache
- docsray-logs:/app/logs
- docsray-data:/app/data
- '/home/dev/workspace:/app/workspace'
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
- docsray-network
networks:
docsray-network:
driver: bridge
name: docsray-network
volumes:
docsray-cache:
driver: local
name: docsray-cache
docsray-logs:
driver: local
name: docsray-logs
docsray-data:
driver: local
name: docsray-data