📣 重要更新 — 访问方式将于 2026 年 10 月 1 日更改

2026 年 10 月 1 日中午(英国时间)起,此镜像源将需要身份验证以保持 apt 正常运行。
订阅年度套餐即可享受不间断访问,同时直接支持本项目的持续运营。感谢您的支持!🙏

🔑 获取年度订阅

💬 有关此仓库的问题、反馈或其他事项?加入我们的 Discord 社区 — 获取帮助并与其他用户交流的最佳场所。
曾通过 Buy Me a Coffee 支持过我们?您太棒了!前往我们的 Discord,我们将为您安排终身免费订阅。💜

☁️ 安装最新的 uncloud 在 Debian 上

Lightweight container orchestration bridging Docker and Kubernetes

Latest Version: 0.11.0+ (August 2025)
← 返回首页

什么是 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!
🚀 Why Latest Versions Matter: 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.

🆕 What's New in uncloud 0.11.0+

📦 从 debian.griffo.io 安装

步骤 1:添加仓库

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

步骤 2:安装 uncloud

# Install latest uncloud sudo apt install uncloud # Verify installation uc --version
# Install latest uncloud apt install uncloud # Verify installation uc --version

🎯 基本使用示例

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

🚀 为什么选择 debian.griffo.io?

📊 Installation Comparison:
  • Official Debian: Not available in official repositories
  • Install Script: Manual updates and dependency management
  • Manual Binary: No package management or automatic updates
  • debian.griffo.io: Latest version (0.11.0+) with automatic updates

📦 软件包构建仓库

Debian 软件包在此 GitHub 仓库中自动构建和维护:

🔗 相关软件包

也可从 debian.griffo.io 获取:

🎯 Perfect for: 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.