forked from Robbie1977/VFB3-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (34 loc) · 863 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (34 loc) · 863 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
version: '3.8'
services:
vfb3-mcp:
build: .
container_name: vfb3-mcp-server
stdin_open: true
tty: true
# Resource limits for orchestration environments
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
reservations:
memory: 256M
cpus: '0.25'
# Security settings for orchestrated environments
security_opt:
- no-new-privileges:true
read_only: true
tmpfs:
- /tmp
# If you need to expose as HTTP server instead of stdio
ports:
- "3000:3000"
environment:
- MCP_MODE=http
- PORT=3000
- HOST=0.0.0.0
# GA4 Analytics (optional - set to enable usage tracking)
- GA_MEASUREMENT_ID=
- GA_API_SECRET=
# MCP Registry HTTP authentication (optional)
- MCP_REGISTRY_AUTH=${MCP_REGISTRY_AUTH:-}