FutrixData Enterprise Edition runs inside your network as a long-lived container. Database credentials never leave your perimeter. A single Docker image, optional external PostgreSQL backend, runs as non-root, and integrates with private model gateways so the full agent-to-data path stays under your control.
docker compose up -d --build on any host with Docker.If your security policy requires AI inference to stay on-premises, point FutrixData's AI service endpoint at an internal model gateway (BYOK with Anthropic / OpenAI / Google routed via your gateway, or local models via Ollama / vLLM / TGI). The full agent-to-data path then remains under your control: no third-party LLM provider, no SaaS proxy, no vendor in the path.
docker compose up -d --buildservices:
futrixdata:
image: futrixdata/enterprise:latest
ports:
- "8080:8080"
environment:
FUTRIXDATA_DB_URL: "postgres://fxd:***@db:5432/futrixdata"
FUTRIXDATA_AI_BASE_URL: "https://internal-llm-gateway.example.com/v1"
FUTRIXDATA_AI_MODEL: "claude-sonnet-4-6"
volumes:
- fxd-data:/data
user: "1001:1001"
volumes:
fxd-data:Yes — provided your internal model gateway can serve completions for the built-in AI features (or you turn the built-in AI off). The proxy itself, risk engine, classification store, and audit log all run locally without outbound calls.
A single small VM (2 vCPU / 4 GB RAM) handles a workgroup. Production deployments typically run 2–4 vCPU per replica with the audit log on external PostgreSQL for HA.
By default, in a Docker volume. For production, point FutrixData at an external PostgreSQL — that gives you the same backup, restore, and monitoring story you already use for the rest of your stack.
Replace the image. State lives in volumes or the external database; the container is stateless. Upgrades are usually a Compose / Helm rollout away.
Enterprise Edition is licensed per deployment. The free desktop app is unrestricted for individual developers; Enterprise unlocks self-hosted server, multi-tenant admin, and external PostgreSQL backend.
Yes. FUTRIXDATA_AI_BASE_URL can point at any OpenAI-compatible endpoint — internal gateway, Ollama, vLLM, TGI, or a managed provider routed through your network.
Free desktop app on macOS, Windows, and Linux. Self-hosted Enterprise Edition for production deployments.