How to Deploy CodeScene On-prem?
The recommended option for installing CodeScene is Docker.

Running CodeScene in Kubernetes
While CodeScene On-Premise does not support running multiple instances directly, you can deploy it in a Kubernetes environment using the official Docker image. The setup is outlined below:
Docker Image: CodeScene is available as the
codescene/codesceneDocker image.Persistent Storage: The image defines a volume at
/codescenefor storing application data. Make sure to mount a persistent volume to this path to ensure data durability across restarts.Service Port: The container exposes the web UI (http) on port 3003. Configure your Kubernetes
ServiceorIngressto route traffic appropriately.Health Checks: A
/healthendpoint is available for liveness and readiness probes. It returns a simple200 OKresponse with an “OK” message, useful for monitoring container health.