53 Entwickler-Tools, immer aktuell — neue Upstream-Releases landen innerhalb von Stunden in apt. Discord beitreten

📅 Ab ist für den apt-Mirror ein Abo erforderlich. Preise ansehen · 🆓 Es gibt einen für immer kostenlosen Spiegel

☁️ Neueste installieren uncloud auf Ubuntu

Lightweight container orchestration bridging Docker and Kubernetes

Neueste Version: 0.20.0 · aktualisiert 2026-07-08
QuelleVersion
deb.griffo.io0.20.0 ✅
Offizielles Ubuntu🚫 nicht paketiert
← Zurück zur Startseite

Was ist uncloud?

uncloud is a lightweight clustering and container orchestration tool created by Pasha Sviderski that lets you deploy and manage web apps across cloud VMs and bare metal with minimal cluster management overhead. It bridges the gap between Docker simplicity and Kubernetes power, providing Docker simplicity with multi-machine power.

🎯 The Sweet Spot: Modern cloud platforms like Heroku offer amazing developer experiences but at premium prices. Kubernetes provides power but requires significant expertise. uncloud finds the pragmatic middle ground - own your infrastructure, stay simple as you grow, build with proven primitives.
⚠️ Development Status: uncloud is currently in active development and is not ready for production use. Features may change significantly between releases. Perfect for experimentation and learning!
🚀 Warum neueste Versionen wichtig sind: uncloud is rapidly evolving with frequent releases containing new orchestration features, performance improvements, and enhanced multi-machine capabilities. The latest versions include better WireGuard mesh networking, improved service discovery, and enhanced Docker Compose compatibility.

⚡ Key Features of uncloud

🌐 Multi-Machine Deployment

Deploy across cloud VMs, dedicated servers, and bare metal. Combine different providers into unified computing environment.

🐳 Docker Compose Compatible

Use familiar Docker Compose format for defining services. No need to learn new configuration languages or complex YAML.

🔒 Zero-Config Private Network

Automatic WireGuard mesh with peer discovery and NAT traversal. Containers get unique IPs for direct cross-machine communication.

🎯 No Control Plane

Fully decentralized design eliminates single points of failure. Each machine maintains synchronized cluster state through peer-to-peer communication.

🔍 Service Discovery

Built-in DNS server resolves service names to container IPs. Automatic load balancing and ingress with HTTPS via Caddy.

📦 Persistent Storage

Run stateful services with Docker volumes managed across machines. Data persistence without complex storage orchestration.

🚀 Immer aktueller als die offiziellen Archive: Debian und Ubuntu frieren Paketversionen mit jedem Release ein — dieses Repository veröffentlicht neue Upstream-Versionen in der Regel innerhalb weniger Stunden. Ein einfaches apt upgrade hält Sie immer auf der neuesten Version.

📦 Installation von deb.griffo.io

Befehle ausführen

Schritt 1: Repository hinzufügen

sudo install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://deb.griffo.io/EA0F721D231FDD3A0A17B9AC7808B4DD62C41256.asc | sudo gpg --dearmor --yes -o /etc/apt/keyrings/deb.griffo.io.gpg
echo "deb [signed-by=/etc/apt/keyrings/deb.griffo.io.gpg] https://deb.griffo.io/apt $(lsb_release -sc 2>/dev/null) main" | sudo tee /etc/apt/sources.list.d/deb.griffo.io.list > /dev/null
sudo apt update
install -d -m 0755 /etc/apt/keyrings
curl -fsSL https://deb.griffo.io/EA0F721D231FDD3A0A17B9AC7808B4DD62C41256.asc | gpg --dearmor --yes -o /etc/apt/keyrings/deb.griffo.io.gpg
echo "deb [signed-by=/etc/apt/keyrings/deb.griffo.io.gpg] https://deb.griffo.io/apt $(lsb_release -sc 2>/dev/null) main" | tee /etc/apt/sources.list.d/deb.griffo.io.list > /dev/null
apt update

🆓 Es gibt einen für immer kostenlosen Spiegel. deb-free.griffo.io liefert Pakete für immer kostenlos — ohne Konto, ohne Abo, höchstens 2 Monate hinter Upstream, Sicherheitsfixes sofort. Derzeit enthält er cliamp, Ghostty, lazydocker, Oh My Posh und Zed; Uncloud ist nicht dabei, deshalb führt heute nur das Repository oben dorthin — auf Anfrage kann es aufgenommen werden.

So funktioniert der kostenlose Spiegel →

Schritt 2: Installieren uncloud

# Install latest uncloud
sudo apt install uncloud

# Installation überprüfen
uc --version
# Install latest uncloud
apt install uncloud

# Installation überprüfen
uc --version

🎯 Grundlegende Verwendungsbeispiele

Initialize your first cluster:

# Initialize cluster on first machine
uc machine init root@your-server-ip

# Add more machines to cluster
uc machine add --name server2 root@second-server-ip

# List cluster machines
uc machine ls

Deploy applications:

# Deploy from Docker image with HTTPS
uc run -p app.example.com:8000/https image/my-app

# Deploy from Docker Compose file
uc compose up -f compose.yaml

# Scale service across machines
uc scale my-app 3

# List running services
uc ls

Manage deployments:

# Update service with new image
uc update my-app image/my-app:v2

# View service logs
uc logs my-app

# Remove service
uc rm my-app

# Clean up cluster
uc machine rm server2

🚀 Warum deb.griffo.io wählen?

📊 Installation Comparison:
  • Official Ubuntu: Not available in official repositories
  • Install Script: Manual updates and dependency management
  • Manual Binary: No package management or automatic updates
  • deb.griffo.io: Latest version with automatic updates

📦 Paket-Build-Repository

Die Ubuntu-Pakete werden automatisch in diesem GitHub-Repository erstellt und gepflegt:

🔗 Verwandte Pakete

Auch verfügbar von deb.griffo.io:

🎯 Perfekt für: Developers who want multi-machine deployment without Kubernetes complexity, teams needing simple container orchestration, homelab enthusiasts, and anyone seeking the sweet spot between Docker and Kubernetes.

📦 Neueste Releases aus diesem Repository

❓ Häufig gestellte Fragen

Ist Uncloud in den offiziellen Ubuntu-Paketquellen?

Nein, Uncloud ist nicht in den offiziellen Ubuntu-Archiven paketiert. Dieses Repository ist derzeit die einzige apt-Quelle und liefert Uncloud 0.20.0.

Wie installiere ich das neueste Uncloud unter Ubuntu?

Fügen Sie das deb.griffo.io-Repository einmalig hinzu (Anleitung oben) und führen Sie dann aus: sudo apt install uncloud. Neue Releases kommen über das normale sudo apt upgrade.

Sind die Pakete signiert und wie werden sie gebaut?

Jedes Paket ist mit dem GPG-Schlüssel des Repositories (EA0F721D231FDD3A0A17B9AC7808B4DD62C41256) signiert und wird aus Upstream-Releases in öffentlichen GitHub-Repositories gebaut, die jeder einsehen kann.

Welche Ubuntu-Versionen werden unterstützt?

Ubuntu 22.04 Jammy, 24.04 Noble, 25.10 Questing und 26.04 Resolute.