Skip to main content

Choose Your Deployment Mode

Rapida ships as two Docker Compose configurations. Self-hosted is the right starting point for agencies that need client ownership and enterprise teams that need scale, governance, and infrastructure control.
Start with Voice Only. You can add the knowledge base at any time by running make up-all-with-knowledge — no data is lost and your ownership model does not change.

Quickstart

Requirements

  • Docker Desktop (Mac / Windows) or Docker Engine v20.10+ with Docker Compose v2.0+ (Linux)
  • Voice Only: 4 GB RAM, 10 GB free disk
  • With Knowledge Base: 8–16 GB RAM, 20 GB free disk

Steps

1

Clone the repository

2

Create data directories

This creates ~/rapida-data/assets/db, ~/rapida-data/assets/redis, and ~/rapida-data/assets/opensearch and sets the correct permissions.
On macOS, setup-local calls sudo setfacl which requires the acl package. If it fails, create the directories manually:
3

Configure YAML files

Each service has a YAML config file under docker/<service>/. Edit them with your API keys and settings:
This is where you define provider keys, networking, runtime behavior, and client- or environment-specific settings.See Configuration for a full reference of all variables.
4

Build images

5

Start Rapida

6

Open the dashboard

Navigate to http://localhost:3000 in your browser.Check container status with:

Common Issues

Port conflicts

If you see “port is already in use”, another service on your machine is using one of Rapida’s ports (5432, 6379, 9001, 9004, 9005, 9007, 8080, 3000). Stop the conflicting service or edit the port mapping in docker-compose.yml.

Container name conflicts

Rapida containers use common names (postgres, redis, opensearch). If you run other projects with the same names, stop them first:

Out of memory

If containers are killed during startup (exit code 137), Docker does not have enough memory allocated.
  • Docker Desktop → Settings → Resources → Memory: set to 8 GB (Voice Only: 4 GB minimum)
  • Tip: Stop all services before rebuilding — make down-all then make build-all — to avoid OOM during builds.

document-api unhealthy on first boot

On first startup, document-api can take 30–60 seconds to connect to OpenSearch. If make up-all-with-knowledge exits with a dependency error, wait a moment and run it again:

Next Steps