LubeLogger
Self-hosted vehicle maintenance and fuel mileage tracker
Alternative to: fuelly, carfax car care, drivvo
LubeLogger is a web-based application for logging vehicle maintenance records, repairs, and fuel consumption, replacing a homemade spreadsheet or a shoebox full of receipts. It supports unlimited vehicles, document and photo attachments, reminders for upcoming service, and CSV import from tools like Fuelly. The app ships as a Docker image or Windows standalone executable, with a Kubernetes Helm chart also available.
LubeLogger Docker Compose example
Self-host LubeLogger on your own server, homelab, or VPS starting from this Docker Compose example.
It runs LubeLogger in Docker containers using the official ghcr.io/hargata/lubelogger:latest image, with persistent volumes and automatic restarts preconfigured.
Review the environment variables and adjust them to your setup, save the file as compose.yml (or docker-compose.yml), and start the stack with docker compose up -d.
services:
lubelogger:
image: ghcr.io/hargata/lubelogger:latest
restart: unless-stopped
volumes:
- data:/App/data
- keys:/root/.aspnet/DataProtection-Keys
volumes:
data:
keys: Prefer a managed setup? WinterFlow installs, configures, and updates LubeLogger for you using this same Docker Compose configuration.