diff --git a/lubelogger/README.md b/lubelogger/README.md new file mode 100644 index 0000000..fd0dbf7 --- /dev/null +++ b/lubelogger/README.md @@ -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) diff --git a/lubelogger/docker-compose.yml b/lubelogger/docker-compose.yml new file mode 100644 index 0000000..c273b5b --- /dev/null +++ b/lubelogger/docker-compose.yml @@ -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" diff --git a/lubelogger/sample.env b/lubelogger/sample.env new file mode 100644 index 0000000..05dd8c0 --- /dev/null +++ b/lubelogger/sample.env @@ -0,0 +1,4 @@ + LUBELOGR_IMAGE_NAME=ghcr.io/hargata/lubelogger:latest + LUBELOGR_RESTART=unless-stopped + LUBELOGR_PORT=8080 + \ No newline at end of file