Blame

61c45d mvbingham 2025-08-03 18:48:29 1
# lubelogger
2
3
## Docker compose file
4
5
```yaml
6
services:
7
app:
8
image: ghcr.io/hargata/lubelogger:latest
9
restart: unless-stopped
10
# volumes used to keep data persistent
11
volumes:
12
- data:/App/data
13
- keys:/root/.aspnet/DataProtection-Keys
14
# expose port
15
ports:
16
- 8087:8080
17
volumes:
18
data:
19
keys:
20
```