Self-hosted network dashboard.
10K+
A self-hosted network dashboard for mapping, monitoring, and analyzing your local network. Scan subnets, visualize topology, track devices, manage VLANs, and chat with an AI assistant that knows your network.
docker run -d \
-p 12100:12100 \
-v ./data:/app/data \
--name boltarr \
brqae/boltarr:latest
services:
boltarr:
image: brqae/boltarr:latest
ports:
- "12100:12100"
volumes:
- ./data:/app/data
restart: unless-stopped
curl -O https://raw.githubusercontent.com/brq-ae/boltarr/master/docker-compose.ollama.yml
docker compose -f docker-compose.ollama.yml up -d
docker exec boltarr-ollama-1 ollama pull llama3.2
Then open ⚙ AI Settings in the app and set the model to llama3.2.
| Variable | Default | Description |
|---|---|---|
LLM_PROVIDER | none | none · ollama · openai · anthropic |
LLM_BASE_URL | Ollama: http://your-ollama:11434 · OpenAI-compat: https://api.openai.com/v1 | |
LLM_MODEL | e.g. llama3.2, gpt-4o, claude-sonnet-4-6 | |
LLM_API_KEY | Required for OpenAI / Anthropic | |
LLM_TIMEOUT | 120 | Seconds for standard requests |
AI is optional — the app works fully without it.
Running inside an unprivileged LXC container requires:
nesting=1, keyctl=1--security-opt apparmor=unconfinedSee the GitHub README for full details.
All data is stored in /app/data:
boltarr.db — SQLite databaseconfig.yaml — AI settingsMount ./data:/app/data to persist data across container restarts.
Content type
Image
Digest
sha256:5bb1b1fbc…
Size
64.6 MB
Last updated
about 1 month ago
docker pull brqae/boltarr