Documentation Index
Fetch the complete documentation index at: https://docs.helix-db.com/llms.txt
Use this file to discover all available pages before exploring further.
For the complete documentation index optimized for AI agents, see llms.txt.Launch the Helix Dashboard in a container to visualize and interact with a local or V2 Cloud instance. Docker or Podman must be installed and running.
Usage
Available sub-commands
| Sub-command | Description |
|---|---|
start | Start the dashboard container. |
stop | Stop and remove the dashboard container. |
status | Show whether the dashboard container is running. |
helix dashboard start
| Argument | Description |
|---|---|
INSTANCE | Instance to connect to. Defaults to dev. Ignored when --host is set. |
| Flag | Type | Description | Default |
|---|---|---|---|
-p, --port | Number | Host port to publish the dashboard on. | 3000 |
--host | String | Helix host to connect to. Bypasses helix.toml instance lookup. | localhost (resolved from [local.<instance>] port) |
--helix-port | Number | Helix port the dashboard talks to. Only used with --host. | 8080 |
--attach | Boolean | Run the dashboard in the foreground with logs. | false |
--restart | Boolean | Remove and recreate the dashboard container if one already exists. | false |
Dashboard started at http://localhost:<port> when the container is up.
helix dashboard stop
- Prints
Dashboard stoppedwhen an existing container is removed. - Prints
Dashboard was not runningif no dashboard container exists.
helix dashboard status
- Prints
Dashboard not runningwhen no container is found. - Otherwise prints the container name, status, and port mapping.
Image pulls are quiet by default. Pass the global
--verbose flag to stream pull progress: helix --verbose dashboard start.