Dakera Quickstart Guide

May 14, 2026 · View on GitHub

Get Dakera running and store your first memory in under 5 minutes.

Prerequisites

Step 1: Clone and Start

git clone https://github.com/dakera-ai/dakera-deploy
cd dakera-deploy/docker
docker compose -f docker-compose.local.yml up -d

This starts Dakera in in-memory mode — no external dependencies, no config files needed.

Step 2: Verify Health

curl http://localhost:3000/health

Expected response:

{"status":"ok"}

Step 3: Store a Memory

curl -X POST http://localhost:3000/v1/memories \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "my-agent",
    "content": "The user prefers dark mode and uses VS Code."
  }'

Step 4: Recall Memories

curl -X POST http://localhost:3000/v1/memories/recall \
  -H "Content-Type: application/json" \
  -d '{
    "agent_id": "my-agent",
    "query": "What IDE does the user prefer?"
  }'

Dakera returns semantically relevant memories ranked by similarity.

Step 5: Stop

docker compose -f docker-compose.local.yml down

Next Steps

GoalGuide
Persist data across restartsUse docker compose up -d (default profile with MinIO)
Enable authenticationSee environment-variables.md
Production deploymentSee production-checklist.md
High availabilitySee the HA section in the README
Use an SDKPython · TypeScript · Go · Rust