From 7698d079f20f73a4009cb71a23da56b9fcea75c8 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 15 Feb 2026 21:40:53 +0100 Subject: [PATCH] fix: switch to k8s-file log driver for reliable log capture journald was dropping early startup logs. k8s-file writes directly to disk, captures from process start, and is lighter on the Pi. Capped at 10 MB with automatic rotation. Co-Authored-By: Claude Opus 4.6 --- docker-compose.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 8191618..93ab347 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,6 +6,10 @@ services: container_name: derp network_mode: host restart: unless-stopped + logging: + driver: k8s-file + options: + max_size: 10mb volumes: - ./src:/app/src:ro,Z - ./plugins:/app/plugins:ro,Z