-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml.bak
More file actions
36 lines (34 loc) · 927 Bytes
/
Copy pathdocker-compose.yml.bak
File metadata and controls
36 lines (34 loc) · 927 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
version: '3.8'
services:
mcp-session-server:
build:
context: .
dockerfile: Dockerfile
container_name: mcp-session-server
ports:
- "${MCP_SESSION_SERVER_PORT:-8088}:${MCP_SESSION_SERVER_INTERNAL_PORT:-8088}"
volumes:
- clinerules-db:/data/db
- clinerules-import-export:/data/import_export
environment:
- NODE_ENV=production
- DB_PATH=/data/db/clinerules.sqlite
- IMPORT_EXPORT_PATH=/data/import_export
- LOG_LEVEL=info
- MCP_SESSION_SERVER_INTERNAL_PORT=${MCP_SESSION_SERVER_INTERNAL_PORT:-8088}
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8088/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
volumes:
clinerules-db:
driver: local
clinerules-import-export:
driver: local
networks:
default:
external: true
name: crawl4ai-network