Install OneBit Stack

Run the control plane on your VPS. The public website is separate — this installs the full deployment dashboard on infrastructure you control.

Quick install (recommended)
Bundled Postgres + Redis via Docker on Ubuntu/Debian
curl -fsSL https://onebitstack.com/install.sh | bash -s -- \
  --domain your-central.example.com \
  --database postgresql \
  --postgres docker

After install, open https://your-central.example.com/setup to create the first admin and configure GitHub.

CLI install
Same installer, explicit flags
curl -fsSL https://onebitstack.com/install.sh | bash -s -- --help
central-cli install --domain your-central.example.com --postgres docker
central-cli doctor
Docker all-in-one
Postgres, Redis, app, and worker in Compose
git clone https://github.com/centralstack/central-server.git
cd central-server
cp .env.production.example .env
docker compose -f docker-compose.install.yml --profile app up -d
Install flags
  • --domain — public URL for auth and webhooks
  • --database postgresql|sqlite
  • --postgres docker|external|skip
  • --no-interactive — CI / scripted installs
  • --systemd — install systemd units (default when root)