Pular para o conteúdo principal

proxmox

DockNimbus vs Proxmox VE

Both target self-hosters, but they work at different layers:

DockNimbusProxmox VE
What it isSelf-hosted cloud platform / IaC orchestratorHypervisor & virtualization management platform
WorkloadsDocker containers, K3s pods, Compose stacksFull VMs (KVM) + system containers (LXC)
AbstractionPlatform-level (manages infra + workloads)Hypervisor-level (manages VMs/containers on hosts)
Target audienceHomelabbers, small teams, edge/IoTHomelabbers, SMBs, enterprises
UICLI onlyFull web UI + CLI
Cluster modelCentral API + per-node agentsPeer cluster (Corosync)
Node provisioningAutomated via SSHManual Proxmox installation on each node
NetworkingWireGuard mesh, EasyHAProxy, dnsmasqLinux bridges, VLANs, OVS, SDN
StorageNFS volumes, MinIO S3ZFS, Ceph, LVM, NFS, iSCSI, GlusterFS
IaCBuilt-in YAML manifestsNot built-in — needs Terraform provider or Ansible
Container orchestrationDocker Swarm + K3s built-inNone — LXC containers are standalone
Live migrationNot supportedVM live migration between nodes
BackupNot includedBuilt-in (vzdump) + Proxmox Backup Server
HAService replicas via Swarm/K3sVM HA via fencing + automatic restart
GPU passthroughNot supportedFull PCIe/GPU passthrough
SnapshotsNot includedVM/container snapshots
Minimum resourcesSingle RPi, ~256MB RAMx86 server, ~2GB RAM (no ARM support)
ARM supportFirst-class (RPi + x86 mixed)x86 only
CostFreeFree (community) or paid subscription
Base OSAny Linux with SSHProxmox's Debian-based OS (replaces your OS)

When to use which

DockNimbus — You want to deploy containerized applications across heterogeneous hardware (especially ARM) with minimal setup. You think in terms of services and workloads, not VMs.

Proxmox — You want full virtualization: run Windows VMs, pass through GPUs, snapshot and migrate VMs, or need workload isolation at the hypervisor level. You have x86 hardware and want a web UI.

Key philosophical difference

  • Proxmox gives you virtual machines — you still need to set up everything inside them
  • DockNimbus gives you a running platform — workloads deploy directly without an intermediate VM layer

They're actually very complementary: many people run Docker/K8s inside Proxmox VMs. DockNimbus cuts out that middle layer and goes straight from bare metal to workloads.