A self-hosted, open-source vehicle service records and maintainence tracker.
Support this project on Patreon: https://patreon.com/LubeLogger
Because nobody should have to deal with a homemade spreadsheet or a shoebox full of receipts when it comes to vehicle maintainence.
- Bootstrap
- LiteDB
- Bootstrap-DatePicker
- SweetAlert2
- CsvHelper
- Chart.js
- Install Docker
- Run
docker pull ghcr.io/hargata/lubelogger:latest
- CHECK culture in .env file, default is en_US, this will change the currency and date formats. You can also setup SMTP Config here.
- If not using traefik, use docker-compose-notraefik.yml
- Run
docker-compose up
- Install Docker
- Clone this repo
- CHECK culture in .env file, default is en_US, also setup SMTP for user management if you want that.
- Run
docker build -t lubelogger -f Dockerfile .
- CHECK docker-compose.yml and make sure the mounting directories look correct.
- If not using traefik, use docker-compose-notraefik.yml
- Run
docker-compose up
- build
docker build -t hargata/lubelog:latest .
- run
docker run -d hargata/lubelog:latest
add -v
for persistent volumes as needed. Have a look at the docker-compose.yml for examples.
- build image
docker compose build
- run
docker compose up
# or variant with traefik labels:
docker compose -f docker-compose.traefik.yml up