# Guide d'installation Choisissez votre méthode d'installation préférée : ## 🐳 Version Docker **Avantages :** - Installation simple avec Docker Compose - Environment isolé et reproductible - Gestion des versions via images Docker - Intégration facile avec d'autres services **→ [Guide Docker complet](docker/README-DOCKER.md)** ### Installation rapide Docker ```bash # Cloner le repo git clone cd Dell_iDRAC_fan_controller/docker # Configurer cp docker-compose.yml docker-compose.local.yml nano docker-compose.local.yml # Lancer docker-compose -f docker-compose.local.yml up -d ``` --- ## 📦 Version LXC (Proxmox) **Avantages :** - Performance native (pas d'overhead Docker) - Intégration parfaite avec Proxmox - Accès hardware direct - Gestion avec systemd **→ [Guide LXC complet](lxc/README-LXC.md)** ### Installation rapide LXC ```bash # Dans un container LXC Ubuntu wget -O - https://github.com//archive/main.tar.gz | tar -xz cd Dell_iDRAC_fan_controller-main/lxc chmod +x install-lxc.sh ./install-lxc.sh ``` --- ## Comparaison rapide | Critère | Docker | LXC | |---------|--------|-----| | **Facilité** | ⭐⭐⭐ | ⭐⭐ | | **Performance** | ⭐⭐ | ⭐⭐⭐ | | **Isolation** | ⭐⭐⭐ | ⭐⭐ | | **Maintenance** | ⭐⭐⭐ | ⭐⭐ | | **Proxmox** | ⭐⭐ | ⭐⭐⭐ | | **Ressources** | ⭐⭐ | ⭐⭐⭐ | ## Support - **Issues** : [GitHub Issues](https://github.com//issues) - **Discussions** : [GitHub Discussions](https://github.com//discussions) - **Original** : [Projet source](https://github.com/tigerblue77/Dell_iDRAC_fan_controller_Docker)