Update docker-compose.yml

This commit is contained in:
Jacob Magar
2025-06-11 16:35:24 -04:00
parent 76588cf4e1
commit 00e07fad38
12 changed files with 1398 additions and 0 deletions

18
.env.example Normal file
View File

@@ -0,0 +1,18 @@
# Unraid MCP Server Configuration
UNRAID_API_URL=https://your-unraid-server-url/graphql # Ensure this matches what the server script (unraid-mcp-server.py) expects
UNRAID_API_KEY=your_unraid_api_key
# MCP Server Settings
UNRAID_MCP_TRANSPORT=sse
UNRAID_MCP_HOST=0.0.0.0
UNRAID_MCP_PORT=6970
# Logging
UNRAID_MCP_LOG_LEVEL=INFO # Changed from UNRAID_LOG_LEVEL
UNRAID_MCP_LOG_FILE=unraid-mcp.log # Added
# Optional: SSL verification for Unraid API calls
# Set to 'false' or '0' to disable (e.g., for self-signed certs).
# Set to a path to a CA bundle file to use custom CAs.
# Defaults to 'true' (SSL verification enabled) if not set in server code, but explicitly configurable via UNRAID_VERIFY_SSL in script.
UNRAID_VERIFY_SSL=true