Custom GPTs, but you actually own the infrastructure
A Dockerized Agentic RAG stack that trades OpenAI's hosting for your own cloud, built on LlamaIndex.

What it does RAGapp wraps LlamaIndex into a single Docker container with an admin UI, chat interface, and auto-generated API. Point it at OpenAI, Gemini, or a local Ollama model, configure your knowledge sources, and you have a deployable RAG agent without writing orchestration code.
The interesting bit The project explicitly offloads the hard parts it doesn’t want to solve: authentication is “by design” absent, punted to whatever API gateway you already have. That’s either refreshing honesty or a deployment headache, depending on your existing stack. The “multiple RAGapps” Compose setup suggests they know enterprise means many teams, not one demo.
Key highlights
- One-liner Docker run; admin UI at
/admin, chat at root, OpenAPI docs at/docs - Supports hosted models (OpenAI, Gemini) and local via Ollama
- Pre-built Compose variants: single-node with Ollama+Qdrant, or multi-tenant with management UI
- Frontends dynamically pulled from
create-llama;make build-frontendsrequired before dev commits - Kubernetes descriptors listed as “coming soon”
Caveats
- No built-in auth; you bring your own API gateway or use their multi-app Compose template
- Authorization via forwarded access tokens is “later versions” territory, not implemented
- Development setup requires Poetry and a Makefile step that fetches upstream frontend code
Verdict Worth a spin if your org wants GPT-style RAG agents behind its own firewall and already has gateway/auth infrastructure. Skip it if you need turnkey multi-user security or are allergic to Docker operations.
Frequently asked
- What is ragapp/ragapp?
- A Dockerized Agentic RAG stack that trades OpenAI's hosting for your own cloud, built on LlamaIndex.
- Is ragapp open source?
- Yes — ragapp/ragapp is open source, released under the Apache-2.0 license.
- What language is ragapp written in?
- ragapp/ragapp is primarily written in TypeScript.
- How popular is ragapp?
- ragapp/ragapp has 4.4k stars on GitHub.
- Where can I find ragapp?
- ragapp/ragapp is on GitHub at https://github.com/ragapp/ragapp.