Skip to content

Getting started

Sign up at brig.run. Your account becomes the first admin of a fresh workspace; everything else is scoped to that workspace.

Open Nodes → Add node in the dashboard. You’ll get a one-line install command to paste into a fresh VPS:

Terminal window
curl -fsSL https://cp.brig.run/install/agent.sh | sudo bash -s -- --token 'brig_join_xxx'

The script installs Docker if needed, downloads the brig-agent binary, and registers the node with your workspace. The new node shows up in the dashboard within a few seconds.

Hardware suggestions

  • 1 vCPU / 1 GiB RAM is enough to run the agent itself plus a couple of small workloads.
  • Linux with systemd. We test against Ubuntu 22.04, 24.04, and Debian 12.
Terminal window
# macOS
brew install brig/tap/brig
# Linux
curl -fsSL https://get.brig.run/cli | sh

Then brig login opens the dashboard in your browser to authorize the CLI. After it returns you’re ready to deploy.

Write a workload TOML:

whoami.brig.toml
name = "whoami"
image = "traefik/whoami:latest"
instances = 2
cpu = "100m"
memory = "32Mi"

Then:

Terminal window
brig deploy whoami.brig.toml
brig ps

brig ps shows the placement on the nodes. Refresh the Workloads page in the dashboard to see the same data.