LogPilot-Lite is a lightweight, standalone log collection system.
597
LogPilot-Lite is a lightweight, cloud-native Event Streaming Broker designed for independent developers and small teams. It serves as a simplified, single-process alternative to distributed systems, running easily on a single Docker container.
Traditional event platforms like Kafka can be overkill for small-scale projects. LogPilot-Lite provides essential event streaming capabilities—including offset tracking and consumer groups—without the complexity of ZooKeeper or multi-node clusters.
You can run LogPilot-Lite in either REST or gRPC mode.
1. Run REST Server (Default)
docker run -d -p 8080:8080 \
-v $(pwd)/data:/data \
danpung2/logpilot-lite:latest
2. Run gRPC Server
docker run -d -p 50051:50051 \
-e LOGPILOT_MODE=grpc \
-v $(pwd)/data:/data \
danpung2/logpilot-lite:latest
| Variable | Description | Default |
|---|---|---|
LOGPILOT_MODE | Server mode (rest or grpc) | rest |
LOGPILOT_DB_PATH | Path to SQLite database | ./data/logpilot.db |
LOGPILOT_STORAGE_DIR | Directory for file-based logs | ./storage |
See More: LogPilot-Lite
Content type
Image
Digest
sha256:7abec3a78…
Size
107 MB
Last updated
7 months ago
docker pull danpung2/logpilot-lite