This guide walks you through deploying the Faasera Risk & Audit Engine using Docker in a local or VM-based environment.
docker pull faasera/risk-audit-engine:latest
If hosted on private registry, authenticate first:
docker login registry.faasera.ai
docker pull registry.faasera.ai/faasera/risk-audit-engine:latest
docker run -d \
--name faasera-engine \
-p 8080:8080 \
-e MICRONAUT_ENVIRONMENTS=docker \
-e JWT_SECRET=your-secret-key \
faasera/risk-audit-engine:latest
Authorization: Bearer <your-token> for secure endpoints.curl -X POST http://localhost:8080/risk/summary/by-name \
-H "Authorization: Bearer <your-token>" \
-H "Content-Type: application/json" \
-d '["FIRST_NAME", "EMAIL_ADDRESS"]'
stdoutdocker logs -f faasera-engine
To persist logs or add config files:
docker run -d \
-v /host/logs:/app/logs \
-v /host/config:/app/config \
faasera/risk-audit-engine:latest
curl http://localhost:8080/health