All checks were successful
Build and Push Proxmox MCP Docker Image / build (push) Successful in 16s
23 lines
893 B
YAML
23 lines
893 B
YAML
services:
|
|
proxmox-mcp:
|
|
image: gitea.ext.ben.io/b3nw/proxmox-mcp-custom:latest
|
|
container_name: proxmox-mcp
|
|
environment:
|
|
# --- Proxmox API Credentials ---
|
|
# Base URL of your Proxmox VE instance (e.g., pve.local.ben.io:8006)
|
|
- PROXMOX_URL=your_proxmox_host:8006
|
|
# Proxmox API User (e.g., root@pam or user@pve)
|
|
- PROXMOX_USER=your_proxmox_user
|
|
# Proxmox API Token Secret (usually starts with "pve_mcp!")
|
|
- PROXMOX_PASSWORD=your_proxmox_token_secret
|
|
# Proxmox API Token ID (e.g., "mcp-token")
|
|
- PROXMOX_TOKEN_ID=your_proxmox_token_id
|
|
# Set to 'true' to skip SSL verification (e.g., for self-signed certs in homelab)
|
|
- PROXMOX_VERIFY_SSL=false
|
|
|
|
# --- MCP Server Settings ---
|
|
- PORT=8000 # Internal container port
|
|
ports:
|
|
- "8000:8000" # Host Port : Container Port
|
|
restart: unless-stopped
|