-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
38 lines (36 loc) · 977 Bytes
/
docker-compose.yaml
File metadata and controls
38 lines (36 loc) · 977 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
services:
arcane-mcp:
build: .
container_name: arcane-mcp
restart: unless-stopped
user: "${PUID:-1000}:${PGID:-1000}"
env_file: ~/.claude-homelab/.env
# NOTE: No environment: block — all vars come from .env via env_file above.
# Do NOT add environment: here. Put all variables in .env and .env.example.
ports:
- "${ARCANE_MCP_PORT:-44332}:${PORT:-3000}/tcp"
volumes:
- arcane_mcp_cache:/app/.cache
- arcane_mcp_logs:/app/logs
networks:
- jakenet
healthcheck:
test: ["CMD-SHELL", "wget -q --spider http://127.0.0.1:${PORT:-3000}/health || exit 1"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
deploy:
resources:
limits:
memory: 512M
cpus: '1.0'
volumes:
arcane_mcp_cache:
name: arcane_mcp_cache
arcane_mcp_logs:
name: arcane_mcp_logs
networks:
jakenet:
name: ${DOCKER_NETWORK:-arcane_mcp}
external: true