Skip to main content

Ports

The service ports used by the Atlas stack. Host port mappings are configurable via environment variables (API_PORT, UI_PORT, KEYCLOAK_PORT, LANGFUSE_PORT, …); the container/in-cluster ports below are the stable reference services bind to.

Reference table

ServicePort (container)ProtocolNotes
osint-api (FastAPI)8000HTTPHost port via API_PORT
osint-ui (frontend)configuredHTTPHost port via UI_PORT
PostgreSQL5432TCPPOSTGRES_PORT
Neo4j7687 (bolt), 7474 (HTTP)bolt/HTTPGraph projection
Redis6379TCPCache & rate limiting
MinIO9000 (API), 9001 (console)HTTPatlas-minio
Keycloak8080HTTPKEYCLOAK_PORT
Temporal7233gRPCWorkflow server
Temporal UIconfiguredHTTPtemporal-ui
LangfuseconfiguredHTTPLANGFUSE_PORT
Host vs container ports

In Docker Compose and Kubernetes the host/ingress ports may differ from the container ports above (they are env- and ingress-driven). Use this table for what each service binds to internally; use your environment's .env / Helm values for the externally-exposed mapping. Project port conventions may also reassign host ports to avoid collisions with other local stacks.

Frontend dev proxy

In local development the Vite dev server proxies to keep auth same-origin:

PathProxied to
/apiBackend API (:8000)
/realms, /resourcesKeycloak

See Local development and Frontend architecture.