forked from enessari/metabase-ai-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (32 loc) · 807 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (32 loc) · 807 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:
metabase-ai-mcp:
build: .
container_name: metabase-ai-mcp-server
restart: unless-stopped
environment:
- NODE_ENV=production
- LOG_LEVEL=info
- METABASE_URL=${METABASE_URL}
- METABASE_USERNAME=${METABASE_USERNAME}
- METABASE_PASSWORD=${METABASE_PASSWORD}
- METABASE_API_KEY=${METABASE_API_KEY}
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
- OPENAI_API_KEY=${OPENAI_API_KEY}
volumes:
- ./logs:/app/logs
- ./.env:/app/.env:ro
networks:
- mcp-network
healthcheck:
test: ["CMD", "node", "-e", "console.log('Health check')"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s
networks:
mcp-network:
driver: bridge
volumes:
mcp-logs:
driver: local