Idun Agent Platform supports two deployment modes depending on your needs. You can run a single agent with a config file, or deploy the full platform with centralized management.Documentation Index
Fetch the complete documentation index at: https://docs.idunplatform.com/llms.txt
Use this file to discover all available pages before exploring further.
Deployment modes
- Production (pre-built images)
- Development (hot reload)
- Standalone engine
Pull published Docker images from Docker Hub and start the full stack. No build step required — this is the recommended approach for production and self-hosted deployments.The Manager API is available at
http://localhost:8000 and the web UI at http://localhost:3000.This mode suits:- Production deployments
- Self-hosted environments
- Multi-agent deployments
- Teams that need centralized configuration and RBAC
Docker Compose variants
| File | Purpose | Images |
|---|---|---|
docker-compose.yml | Production | Pulls prebuilt images from Docker Hub |
docker-compose.build.yml | Build from source | Builds images locally from Dockerfiles |
docker-compose.dev.yml | Development | Builds from source with hot reload, Vite dev server |
docker-compose.debug.yml | Debug overlay | Adds debugpy to the manager (use with -f alongside dev) |
env_file: .env for secrets and configuration. Copy .env.example to .env before starting.
To include the demo agent service, add the demo profile:
Agent lifecycle management
- Manager UI
- Config file
From the agent detail page, manage the agent lifecycle:
- The status badge shows Draft or Active
-
Click Restart to call
/reloadon the running engine, which re-fetches config from the platform -
The Overview tab includes Connect to Platform instructions for enrollment

Full stack architecture
In managed mode, the platform consists of three services and a database:| Component | Description | Default port |
|---|---|---|
| Manager | FastAPI control plane API for agent configuration, auth, and workspace management | 8080 |
| Web UI | React admin dashboard (nginx in production, Vite in dev) | 3000 |
| PostgreSQL | Stores agent configs, user accounts, workspace data | 5432 |
| Agent engines | Your agent services, each running the Idun engine SDK | 8000+ |
Prerequisites
| Requirement | Standalone | Managed |
|---|---|---|
| Python 3.12+ | Yes | Yes (for agent services) |
| Docker + Docker Compose | No | Yes |
| PostgreSQL 16 | No | Yes (included in Docker Compose) |
idun-agent-engine package | Yes | Yes (for agent services) |