From 9b600a4dd13c015ef7785645e78a9818038e3fb4 Mon Sep 17 00:00:00 2001 From: Sam Date: Wed, 28 Jan 2026 22:48:13 -0600 Subject: [PATCH] v1.1 patch - log rotation added --- conduit.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conduit.sh b/conduit.sh index 0a56e9b..63d3df0 100644 --- a/conduit.sh +++ b/conduit.sh @@ -645,6 +645,8 @@ run_conduit() { docker run -d \ --name "$cname" \ --restart unless-stopped \ + --log-opt max-size=15m \ + --log-opt max-file=3 \ -v "${vname}:/home/conduit/data" \ --network host \ "$CONDUIT_IMAGE" \ @@ -929,6 +931,8 @@ run_conduit_container() { docker run -d \ --name "$name" \ --restart unless-stopped \ + --log-opt max-size=15m \ + --log-opt max-file=3 \ -v "${vol}:/home/conduit/data" \ --network host \ "$CONDUIT_IMAGE" \