Docker-Compose: add readme with snippets

This commit is contained in:
Aroy-Art 2025-08-15 17:33:28 +02:00
parent 6d65d0f1fe
commit 8b90ac3eb9
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -0,0 +1,20 @@
# My Docker Compose Stacks
Every subdirectory is its own stack.
## Snippets
### Loki logging
```YAML
logging:
driver: loki
options:
loki-url: "${LOKI_URL:-http://localhost:3100/loki/api/v1/push}"
```
```ENV
# Loki log monitoring
LOKI_URL=
```