From 64da99bc92dc24a0d09a8a0bb77a239ee1a67118 Mon Sep 17 00:00:00 2001 From: cjones Date: Mon, 23 Mar 2026 13:23:36 -0400 Subject: [PATCH] Change to bind mounts mapped to per-microservice ZFS datasets --- loki/compose.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/loki/compose.yaml b/loki/compose.yaml index fdabec6..f2d2a05 100644 --- a/loki/compose.yaml +++ b/loki/compose.yaml @@ -7,10 +7,6 @@ networks: logging: driver: bridge -volumes: - loki-data: - grafana-data: - services: # ── Loki: log storage and query engine ────────────────────────────────────── @@ -24,7 +20,7 @@ services: - "3100:3100" # Loki HTTP API (Alloy pushes here; Grafana queries here) volumes: - /var/lib/loki:/loki - - /etc/loki/loki.yml:/etc/loki/loki.yml:ro + - /etc/loki:/etc/loki:ro command: -config.file=/etc/loki/loki.yml healthcheck: test: ["CMD-SHELL", "wget -q --spider http://localhost:3100/ready || exit 1"]