refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 deletions
+8
View File
@@ -0,0 +1,8 @@
# 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)
+9
View File
@@ -0,0 +1,9 @@
services:
lubelogger:
image: ${LUBELOGR_IMAGE_NAME:-ghcr.io/hargata/lubelogger:latest}
restart: ${LUBELOGR_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-./data}/lubelogger/App:/App/data
- ${VOL_PATH:-./data}/lubelogger/keys:/root/.aspnet/DataProtection-Keys
ports:
- "${LUBELOGR_PORT:-8080}:8080"
+4
View File
@@ -0,0 +1,4 @@
LUBELOGR_IMAGE_NAME=ghcr.io/hargata/lubelogger:latest
LUBELOGR_RESTART=unless-stopped
LUBELOGR_PORT=8080