All checks were successful
Build and Push Proxmox MCP Docker Image / build (push) Successful in 8s
15 lines
494 B
YAML
15 lines
494 B
YAML
services:
|
|
proxmox-mcp:
|
|
image: gitea.ext.ben.io/b3nw/proxmox-mcp-custom:latest
|
|
container_name: proxmox-mcp
|
|
environment:
|
|
# --- MCP Transport Security ---
|
|
# Allowed Host headers (comma-separated, supports :* for wildcard ports)
|
|
- MCP_ALLOWED_HOSTS=proxmox-mcp.example.io,localhost:*,127.0.0.1:*
|
|
volumes:
|
|
# Mount your clusters.json configuration file
|
|
- ./clusters.json:/app/clusters.json:ro
|
|
ports:
|
|
- "8000:8000"
|
|
restart: unless-stopped
|