A unified deployment solution for homelab services on ProxMox VE, providing standardized management for MCP servers, iDRAC interfaces, time-shift proxies, and monitoring services.
# Clone the repository
git clone https://github.com/notdabob/ProxMox_VM_TimeShift.git
cd ProxMox_VM_TimeShift
# Create a hybrid VM (recommended)
./deploy/create-vm.sh --type hybrid
# Deploy the full stack
./deploy/deploy-stack.sh --vmid 220 --profile full- Unified Deployment: Single command deployment for all homelab services
- Service Profiles: Choose between mcp, idrac, timeshift, monitoring, or full stack
- Auto-Discovery: Automatic detection of servers on your network
- Web Dashboard: Browser-based management interface
- Health Monitoring: Real-time service health checks
- Standardized Architecture: Consistent port allocation and VMID ranges
-
MCP Services (Ports 7001-7003)
- Context7 MCP: SQLite context management
- Desktop Commander: System control capabilities
- Filesystem MCP: File system access
-
iDRAC Manager (Ports 8080, 8765)
- Web dashboard for server management
- Support for Dell iDRAC, ProxMox, Linux, Windows, and VNC
- SSH key management and RDM export
-
Time-Shift Proxy (Port 8090)
- SSL certificate time manipulation
- Access systems with expired certificates
-
Monitoring Stack (Ports 9000-9010)
- Service discovery and registration
- Health monitoring
- Unified dashboard
- VMID Ranges: 200-249 (organized by service type)
- Port Allocation: Organized by service category
- Docker Networks: Isolated homelab-network
- Persistent Storage: Docker volumes for data persistence
- ProxMox VE 7.0 or higher
- SSH access to ProxMox host
- Sufficient resources (4 cores, 8GB RAM recommended)
# Create a hybrid VM with default resources
./deploy/create-vm.sh --type hybrid
# Or customize resources
./deploy/create-vm.sh --type hybrid --cores 6 --memory 12288 --disk 60# Deploy full stack (recommended)
./deploy/deploy-stack.sh --vmid 220 --profile full
# Or deploy specific services
./deploy/deploy-stack.sh --vmid 220 --profile mcp
./deploy/deploy-stack.sh --vmid 220 --profile idracAfter deployment, access services at:
- Unified Dashboard:
http://<VM_IP>:9010 - iDRAC Manager:
http://<VM_IP>:8080 - MCP Services:
http://<VM_IP>:7001-7003
# Check service status
./deploy/service-discovery.sh --status --vmid 220
# Monitor services continuously
./deploy/service-discovery.sh --watch --vmid 220 --interval 30
# Restart services
./deploy/deploy-stack.sh --vmid 220 --profile full --force# Update services
cd ProxMox_VM_TimeShift
git pull
./deploy/deploy-stack.sh --vmid 220 --profile full
# Rollback if needed
./deploy/deploy-stack.sh --vmid 220 --rollbackProxMox_VM_TimeShift/
├── deploy/ # Deployment scripts
│ ├── create-vm.sh # VM creation
│ ├── deploy-stack.sh # Service deployment
│ └── service-discovery.sh # Monitoring
├── docker/ # Docker configurations
│ ├── docker-compose.yaml
│ └── services/ # Service-specific files
├── config/ # Configuration files
├── scripts/ # Utility scripts
├── docs/ # Documentation
└── archive/ # Legacy code (reference only)
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
- Architecture Overview
- Deployment Guide
- Quick Start Guide
- Local Deployment Guide
- Comprehensive Troubleshooting Guide
- VM Network Troubleshooting
- Quick Fix Guide
- Cleanup Plan
If you encounter network issues with your VMs:
# Run the network troubleshooting script
./scripts/troubleshoot-vm-network.sh --vmid 220
# Attempt automatic fixes
./scripts/troubleshoot-vm-network.sh --vmid 220 --fix
# Quick fix for VM 220 specifically
./scripts/fix-vm-220.sh- The
archive/directory contains legacy code for reference only - Use the unified deployment approach for all new installations
- Regular backups are recommended before updates
This project is licensed under the MIT License - see the LICENSE file for details.