LogPilot is a lightweight, cloud-native Event Streaming Broker
472
LogPilot is available on Docker Hub as a lightweight event streaming broker. We provide two ways to run LogPilot.
danpung2/logpilot:latest): Only the LogPilot server. Best for custom integration.danpung2/logpilot:fullstack): LogPilot + Prometheus + Grafana in a single image. Best for testing and demos.If you want to pull the images before running them:
# Pull Standalone image
docker pull danpung2/logpilot:latest
# Pull Full-Stack image
docker pull danpung2/logpilot:fullstack
Run the server with a single command:
docker run -d -p 8080:8080 -p 50051:50051 danpung2/logpilot:latest
Get everything (Server + Metrics + Dashboard) with one command:
docker run -d \
-p 8080:8080 -p 50051:50051 \
-p 9090:9090 -p 3000:3000 \
danpung2/logpilot:fullstack
docker-compose up -d
docker-compose -f docker-compose.monitoring.yml up -d
| Variable | Description | Default |
|---|---|---|
LOGPILOT_API_KEY | API Key for secure ingestion | your-api-key-here |
SERVER_PORT | REST API Port | 8080 |
GRPC_PORT | gRPC Port | 50051 |
DATA_PATH | Path for SQLite storage | /app/data |
See More: LogPilot
Content type
Image
Digest
sha256:c2f4fb385…
Size
202.4 MB
Last updated
7 months ago
docker pull danpung2/logpilot