The bundled compose file binds port 3001 to
127.0.0.1 only, so the dashboard is reachable on the host machine but not over the LAN. See Exposing on the LAN to change this.Installation
- Quick install (recommended)
- Docker Compose
- Docker Run (BYO PostgreSQL)
One command. The installer downloads the compose file, generates a secret, and brings up the stack. Give it about 30 seconds to boot.
Useful flags:
Prefer to review the script before running it?
Prefer to review the script before running it?
--dir <path> to install elsewhere, --dry-run to preview, --yes to skip the confirmation prompt.When the installer finishes, open http://localhost:3001 and sign up for an account. Then head to the Routing page to add an LLM provider (OpenAI, Anthropic, Gemini, etc.) with your API key.Verify
After connecting a provider, send a test request and watch it land in the dashboard. Grab your Manifest API key from the dashboard (it starts withmnfst_) and run:
That doesn't look like a Manifest key, you’re still using the placeholder — replace mnfst_YOUR_KEY_HERE with the real key from the dashboard.
Verifying the image signature
Published images are signed with cosign keyless signing (Sigstore). Verify before pulling:Custom port
If port 3001 is taken, change both the mapping andBETTER_AUTH_URL:
docker-compose.yml:
.env:
Exposing on the LAN
By default the compose file binds port 3001 to127.0.0.1 only. The dashboard is reachable from the host but not from other machines on the network. To expose it on the LAN:
Change the port binding
Edit
docker-compose.yml and change the ports line from "127.0.0.1:3001:3001" to "3001:3001".Set BETTER_AUTH_URL
In
.env, set BETTER_AUTH_URL to the host you’ll reach the dashboard on, e.g. http://192.168.1.20:3001 or https://manifest.mydomain.com. This must match the URL in the browser or Better Auth will reject the login with “Invalid origin”.Image tags
Every release is published with the following tags:| Tag | Example | Description |
|---|---|---|
major.minor.patch | 5.46.0 | Fully pinned |
major.minor | 5.46 | Latest patch within a minor |
major | 5 | Latest minor+patch within a major |
latest | — | Latest stable release |
sha-<short> | — | Exact commit for rollback |
linux/amd64 and linux/arm64.
Upgrading
Manifest ships a new image on every release. To upgrade an existing compose install:pgdata volume is preserved across upgrades. Pin to a specific major version (e.g. manifestdotbuild/manifest:5) in docker-compose.yml if you want control over when major upgrades happen.
Backup and persistence
All state lives in thepgdata named volume mounted at /var/lib/postgresql/data in the postgres service. Nothing else in the Manifest container is stateful.
Back up (from the host, with the stack running):
Environment variables
Core| Variable | Required | Default | Description |
|---|---|---|---|
DATABASE_URL | Yes | — | PostgreSQL connection string |
BETTER_AUTH_SECRET | Yes | — | Session signing secret (min 32 chars) |
BETTER_AUTH_URL | No | http://localhost:3001 | Public URL. Set this when using a custom port |
PORT | No | 3001 | Internal server port |
NODE_ENV | No | production | Node environment |
SEED_DATA | No | false | Seed demo data on startup |
Additional environment variables
Additional environment variables
Network and security
Rate limiting
Default: 100 requests per 60-second window.Email alerts (Mailgun)
OAuth providers
| Variable | Default | Description |
|---|---|---|
BIND_ADDRESS | 127.0.0.1 | Bind address |
CORS_ORIGIN | — | Allowed CORS origin |
API_KEY | — | Internal API key |
AUTO_MIGRATE | true | Run database migrations on startup |
| Variable | Default | Description |
|---|---|---|
THROTTLE_TTL | 60000 | Rate limit window in ms |
THROTTLE_LIMIT | 100 | Max requests per window |
| Variable | Description |
|---|---|
MAILGUN_API_KEY | Mailgun API key |
MAILGUN_DOMAIN | Mailgun domain |
MAILGUN_FROM | Sender address for alerts |
| Variable | Description |
|---|---|
GOOGLE_CLIENT_ID / GOOGLE_CLIENT_SECRET | Google OAuth |
GITHUB_CLIENT_ID / GITHUB_CLIENT_SECRET | GitHub OAuth |
DISCORD_CLIENT_ID / DISCORD_CLIENT_SECRET | Discord OAuth |