// Technical guide // LXC · Containers

LXC containers in Proxmox:
when to use them instead of a VM

Proxmox VE is not just KVM. Alongside full virtual machines it offers LXC system containers — a lightweight alternative that, for many workloads, is faster, denser and cheaper to operate. Here's when LXC makes sense and how to run it safely.

// Table of Contents
  1. A shared kernel instead of full virtualisation
  2. Security: unprivileged by default
  3. Bind mounts and persistent data
  4. LXC in real infrastructure
// 01 · LXC vs virtual machine

A shared kernel instead of full virtualisation

An LXC container does not boot its own kernel or BIOS — it shares the Proxmox host kernel, isolating processes via namespaces and cgroups. The result: sub-second startup, minimal memory overhead, and far more containers per host than full VMs.

FeatureLXC containerQEMU/KVM VM
KernelShared with hostOwn, any kernel
Resource overheadVery lowHigher (full VM)
Startup time< 1 sSeconds–minutes
Guest OSLinux onlyLinux, Windows, BSD…
IsolationKernel-levelFull (hardware)
Snapshots / backupYes (ZFS, PBS)Yes (ZFS, PBS)
// 02 · Privileged vs unprivileged

Security: unprivileged by default

Proxmox creates containers as unprivileged and they should stay that way. The container's UID/GID are mapped onto an unprivileged host range (root inside the container = a regular user on the host), greatly limiting the impact of a potential container escape.

⚠️

Note: workloads requiring their own kernel modules, a custom kernel, or a non-Linux OS (Windows) are not suitable for LXC — use a full QEMU VM there.

// 03 · Storage and data

Bind mounts and persistent data

Containers use volumes on Proxmox storage (ZFS, LVM-thin, directory). Large, shared datasets are attached via a bind mount (pct set <id> -mp0 /tank/data,mp=/data) rather than kept in the container rootfs — this simplifies backup, migration and sharing between containers.

// 04 · Backup and production

LXC in real infrastructure

LXC containers are backed up just like VMs — via Proxmox Backup Server (PBS) with deduplication and incremental copies, or via vzdump. Snapshot mode (on ZFS/LVM-thin) and suspend/stop are supported. Proxmox cluster HA covers containers exactly like virtual machines.

Typical good fits for LXC: web servers and reverse proxies, APIs and microservices, CI runners, dev/test database instances, DNS/monitoring servers. For maximum tenant isolation or untrusted workloads — stick with full VMs.

💡

In practice: in migrations we combine both worlds — critical and untrusted workloads as VMs, dense homogeneous Linux services as LXC. The result: higher density and lower cost without sacrificing security where it matters.

We'll plan your VM / LXC split

We'll help decide which workloads to move into lightweight containers and which to keep as full VMs — with PBS backup and HA.

⚡ Free consultation → Choosing a CPU type in Proxmox