Files
docker-compose-cookbooks/lubelogger_dev/README.md
T
codeandClaude Fable 5 340866f9f4 complete all stack READMEs to the 9-section template
Existing content preserved and reordered to the canonical section order;
missing sections generated from each stack's compose data (ports, volumes,
env vars, image links). Fixes copy-paste errors in Dockhand sections
(qbittorrent pointed at archivebox; invokeai/thunderbird said SERVICENAME)
and persistant->persistent typos in gatus.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-16 06:25:05 +00:00

65 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# LubeLogger
This container is for internal use only.
There is no user management.
You could put it behind a reverse proxy.
Uses sqlite by default but postgres is an option too.
[Getting Started Wiki](https://docs.lubelogger.com/Installation/Getting%20Started)
## Overview
Vehicle maintenance records and fuel mileage tracker.
## Project Details
- **Container Image:** [ghcr.io/hargata/lubelogger:latest](https://github.com/hargata/lubelogger)
- **Reverse Proxy Port:** `8080`
## Getting Started
1. Start the container: `docker compose up -d`
2. Open http://localhost:8080 in your browser
3. Follow the initial setup wizard to configure the application
## Environment Variable Notes
LUBELOGGER_PORT default: 8080
## Volume Notes
/App/data host path /data/lubelogger/data
/root/.aspnet/DataProtection-Keys host path /data/lubelogger/keys
## Network Notes
Requires proxy network
## Docker Run
```bash
docker run -d \
--name lubelogger \
-p 8080:8080 \
-v /data/lubelogger/data:/App/data \
-v /data/lubelogger/keys:/root/.aspnet/DataProtection-Keys \
ghcr.io/hargata/lubelogger:latest
```
See compose.yaml for the full set of environment variables.
## Additional Notes / Gotchas
Nothing specific to this stack so far.
## Dockhand Stack, Deploy from Git
Cookbooks Repository
stackname: lubelogger_dev
Compose file path: lubelogger_dev/compose.yaml
Additional env file (optional): lubelogger_dev/sample.env
Then "Load" lubelogger_dev/sample.env into the Environmental variables in dockhand
Create the Stack