Skip to main content

Self-Hosting

Run WeGrowHQ on your infrastructure with full data ownership. MIT licensed, no per-seat fees.

Requirements

  • Docker 24+ (or compatible runtime)
  • 2 GB RAM minimum (4 GB recommended for small teams)
  • Persistent volume for database storage

Quick start

docker run -d \
-p 3000:3000 \
-v wegrowhq-data:/data \
--name wegrowhq \
wegrowhq/wegrowhq:latest

Open http://localhost:3000 and complete the setup wizard.

Production checklist

  • Put WeGrowHQ behind a reverse proxy (nginx, Caddy) with HTTPS
  • Configure automated backups for the data volume
  • Set up a process for pulling image updates

Upgrade

docker pull wegrowhq/wegrowhq:latest
docker stop wegrowhq && docker rm wegrowhq
# re-run docker run with the same volume mount