Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions blueprints/lubelogger/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: "3.8"

services:
lubelogger:
image: ghcr.io/hargata/lubelogger:v1.6.5
restart: unless-stopped
environment:
- LC_ALL=${LUBELOGGER_LOCALE}
- LANG=${LUBELOGGER_LOCALE}
- LUBELOGGER_DOMAIN=${LUBELOGGER_DOMAIN}
- EnableAuth=${LUBELOGGER_ENABLE_AUTH}
volumes:
- lubelogger-data:/App/data
- lubelogger-keys:/root/.aspnet/DataProtection-Keys
expose:
- 8080

volumes:
lubelogger-data: {}
lubelogger-keys: {}
Binary file added blueprints/lubelogger/lubelogger.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions blueprints/lubelogger/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[variables]
main_domain = "${domain}"
lubelogger_locale = "en_US.UTF-8"
lubelogger_enable_auth = "false"
lubelogger_domain = "https://${main_domain}"

[config]
mounts = []

[[config.domains]]
serviceName = "lubelogger"
port = 8080
host = "${main_domain}"

[config.env]
LUBELOGGER_LOCALE = "${lubelogger_locale}"
LUBELOGGER_ENABLE_AUTH = "${lubelogger_enable_auth}"
LUBELOGGER_DOMAIN = "${lubelogger_domain}"
18 changes: 18 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -3812,6 +3812,24 @@
"development"
]
},
{
"id": "lubelogger",
"name": "LubeLogger",
"version": "v1.6.5",
"description": "LubeLogger is a self-hosted vehicle maintenance and fuel mileage tracker for managing service records, reminders, fuel logs, and vehicle expenses.",
"logo": "lubelogger.png",
"links": {
"github": "https://github.com/hargata/lubelog",
"website": "https://lubelogger.com/",
"docs": "https://docs.lubelogger.com/"
},
"tags": [
"vehicle",
"maintenance",
"fleet",
"self-hosted"
]
},
{
"id": "macos",
"name": "MacOS (dockerized)",
Expand Down
Loading