Skip to main content

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.
Stop a background local instance and remove its containers. helix stop is idempotent — if the instance is not running, the CLI exits successfully without error. For disk-mode instances, helix stop removes the Helix and MinIO containers but keeps the persistent local volume. Use helix prune to delete disk-mode data.

Usage

helix stop [INSTANCE]

Arguments

ArgumentDescription
INSTANCELocal instance to stop. If omitted in a TTY with multiple instances, the CLI prompts. Defaults to dev when present.

Examples

# Stop the default 'dev' instance
helix stop dev

# Stop with interactive picker
helix stop

# Safe to call in scripts even if the instance is already stopped
helix stop staging || true