Skip to main content
The Alquimia stack is a set of services that work together. When you run docker compose up, all of these start automatically. You only need to interact with Studio and occasionally the others when debugging.

Services at a glance

You don’t need to interact with most of these services directly. Studio orchestrates everything through the Registry API. Use Studio for building agents and for metrics dashboards; open Insight Hub (3000) when you want topic-based knowledge exploration and chat.

Port configuration

All ports are configurable via environment variables in your .env file before running docker compose up.

Data storage

The stack persists data in Docker volumes:
  • MongoDB — Studio’s settings (models, MCP, embeddings)
  • Postgres — Twyd and Insight Hub application data (topics, documents, tenants, chat-related persistence)
  • Qdrant — Vector storage/search for knowledge base and workloads that use embeddings-backed retrieval
  • MinIO — Uploaded documents and files
Running docker compose down -v removes all volumes and deletes all persisted data, including your agents, settings, and knowledge base. Use docker compose down (without -v) to stop services while keeping data.

Next steps

Installation

Get the full stack running with a single command.