Get started in 30 seconds.
One Go binary. Docker, Kubernetes, or native. Pick your path and you're writing data in under a minute.
Docker
Single container. Production-ready defaults. Works on any host with Docker installed.
docker run -d -p 8000:8000 \
-e STORAGE_BACKEND=local \
-v arc-data:/app/data \
ghcr.io/basekick-labs/arc:latestKubernetes
Helm chart for production clusters. Pinned to Arc v26.06.3. Multi-node ready, with default values you can override.
# Pinned to the latest Arc release (v26.06.3)
helm install arc https://github.com/basekick-labs/arc/releases/download/v26.06.3/arc-26.06.3.tgzLinux
Native .deb / .rpm packages. Pinned to Arc v26.06.3. RHEL / Fedora and other distros available on GitHub Releases.
# Debian / Ubuntu — pinned to Arc v26.06.3
wget https://github.com/basekick-labs/arc/releases/download/v26.06.3/arc_26.06.3_amd64.deb
sudo dpkg -i arc_26.06.3_amd64.debVerify your install
Write a point. Query it back. Two curl commands, no client library needed.
# Write a point (InfluxDB Line Protocol)
curl -X POST http://localhost:8000/api/v1/write/line-protocol \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "x-arc-database: default" \
--data-binary "cpu,host=server01 value=0.64"# Query it back with SQL
curl -X POST http://localhost:8000/api/v1/query \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"sql":"SELECT * FROM cpu LIMIT 10"}'Need to generate an API token first? Token setup guide →
Add a UI with Arc Launchpad
Prefer a browser over curl? Arc Launchpad is a self-hosted web console for the Arc instances you run. Run SQL, explore schemas, and manage tokens, retention, alerts, continuous queries, and MQTT ingestion.
Deploy it alongside Arc with Docker Compose, then open http://localhost:3000 and connect your Arc endpoint.
# Run Arc + Launchpad together (see docs for the compose file)
LAUNCHPAD_JWT_SECRET=$(openssl rand -hex 32) docker compose up -d
Arc Enterprise
Multi-node clustering, RBAC + SSO, audit logging, tiered storage automation, and dedicated support. Self-hosted or fully managed.
- Multi-node clustering and high availability
- Role-based access control (RBAC) and SSO
- Audit logging and query governance
- Tiered storage automation
- Dedicated support and SLAs