85 lines
3.0 KiB
Markdown
85 lines
3.0 KiB
Markdown
---
|
|
title: CTFreak
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, server-management, app-marathon-batch-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Server+Management&app=ctfreak]
|
|
---
|
|
|
|
# 🖥️ CTFreak
|
|
|
|
> **Gestionnaire de CT (Container/VM) pour Proxmox** — pilote vos conteneurs LXC et VMs Proxmox depuis une interface web unique.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [ctfreak.com](https://ctfreak.com) |
|
|
| **GitHub** | [ctfreak/ctfreak](https://github.com/ctfreak/ctfreak) |
|
|
| **License** | GPL-3.0 (présumé) |
|
|
| **Langage** | Go |
|
|
| **Étoiles GitHub** | <0.5k ⭐ |
|
|
| **Catégorie** | [[cat-server-management|Server Management]] |
|
|
|
|
## 📝 Description
|
|
|
|
**CTFreak** (Container & VM Freak) est une interface web simplifiée pour administrer un serveur **Proxmox VE**. L'UI Proxmox native est dense et orientée experts, CTFreak la complète en offrant une vue claire sur vos conteneurs LXC et VMs : start/stop/reboot en un clic, monitoring CPU/RAM, accès console simplifié, scheduling d'actions. Différence avec **l'UI Proxmox native** : CTFreak est plus moderne, plus visuelle, et propose des vues "consumer" plutôt qu'"admin hyperviseur". Pour qui: homelabbers qui utilisent Proxmox et veulent une UI plus simple que celle par défaut.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
ctfreak:
|
|
image: ghcr.io/ctfreak/ctfreak:latest
|
|
container_name: ctfreak
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8888:8080"
|
|
environment:
|
|
- PROXMOX_URL=https://proxmox.local:8006
|
|
- PROXMOX_USER=root@pam
|
|
- PROXMOX_TOKEN_ID=ctfreak
|
|
- PROXMOX_TOKEN_SECRET=*** - PROXMOX_VERIFY_SSL=false
|
|
volumes:
|
|
- ./data:/data
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.ctfreak.rule=Host(`ctf.example.com`)"
|
|
- "traefik.http.routers.ctfreak.entrypoints=websecure"
|
|
- "traefik.http.routers.ctfreak.tls.certresolver=letsencrypt"
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- **Proxmox VE UI** — UI native (référence)
|
|
- **Proxmox Mobile** — App mobile companion
|
|
- **XOA (Xen Orchestra)** — Pour XenServer (autre hyperviseur)
|
|
- **Cockpit + plugin KVM** — UI Red Hat
|
|
|
|
### Propriétaires
|
|
- **VMware vSphere** — Hyperviseur enterprise (payant)
|
|
- **Nutanix** — Hyperconvergé
|
|
- **Scale Computing** — Hyperconvergé pour PME
|
|
|
|
## 🔐 Sécurité
|
|
- **Auth via API Token Proxmox** : crée un user dédié dans Proxmox avec permissions limitées.
|
|
- **Pas d'accès direct shell** : toutes les opérations passent par l'API Proxmox.
|
|
- **HTTPS obligatoire** : à déployer derrière Traefik (jamais en HTTP direct).
|
|
|
|
## 📚 Ressources
|
|
- [Documentation CTFreak](https://ctfreak.com/docs)
|
|
- [Proxmox API](https://pve.proxmox.com/pve-docs/api-viewer/)
|
|
- [Selfh.st — Server Management](https://selfh.st/apps/?tag=Server+Management)
|
|
|
|
## Pages Liées
|
|
- [[cat-server-management]] — Catégorie Server Management
|
|
- **Proxmox VE** — Hyperviseur sous-jacent
|
|
- [[recettes-docker-compose]] — Templates Docker
|