📖 Your First 5 Minutes with cella

This tutorial walks you through installing cella, launching it, and performing basic container operations.

Prerequisites

Step 1: Get the Binary

curl -Lo cella https://github.com/fourdollars/cella/releases/download/latest/cella_linux_amd64
chmod +x cella

Or build from source (requires Go 1.20+):

git clone https://github.com/fourdollars/cella
cd cella
go build -o cella ./cmd/main.go

Step 2: Launch cella

sudo ./cella

You'll see the Dashboard — a split-pane view with your container list on the left and real-time metrics on the right.

💡 cella auto-detects both LXD and Docker runtimes. If you have both, all containers appear in a unified list.

Step 3: Navigate

Step 4: Watch the Metrics

The Dashboard shows live sparklines for CPU, memory, and network I/O. These update every second from cgroup v2 stats.

Step 5: Sort and Filter

Step 6: Quit

Press q or Ctrl+C to exit.

What's Next?