-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Ahmed edited this page Mar 16, 2026
·
2 revisions
There are multiple ways to deploy and run EventLens depending on your environment.
You can build the production image from the repository:
docker build -t eventlens:latest .And run it by mounting your local config:
docker run --rm \
-p 9090:9090 \
-v "$(pwd)/eventlens.yaml:/app/eventlens.yaml:ro" \
--name eventlens \
eventlens:latestThe UI will be accessible at http://localhost:9090.
If you use Docker Compose, you can define EventLens alongside your Postgres/Kafka containers:
services:
eventlens:
image: alphasudo2/eventlens-app:latest
restart: on-failure
environment:
EVENTLENS_CONFIG: /app/eventlens.yaml
volumes:
- ./eventlens.yaml:/app/eventlens.yaml:ro
ports:
- "9090:9090"For local development or raw JVM environments, see Building from Source and JVM Deployment.