From 9748f9bac9d0f28bda9531fc25fd4f6d2bdbde2d Mon Sep 17 00:00:00 2001 From: Benedikt Ziemons Date: Tue, 15 Jun 2021 10:26:11 +0200 Subject: [PATCH] Set logging driver default, fix help --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 25f538d..a4d5fc2 100644 --- a/main.py +++ b/main.py @@ -143,7 +143,7 @@ class PodKeeper: @click.command() @click.option("--network", default="brodge", help="Network for the created pod") -@click.option("--log-driver", default="", help="Network for the created pod") +@click.option("--log-driver", default="journald", help="Logging driver for the created pod") @click.option("--replace/--no-replace", default=True, help="Controls replacement of previously running pod with the " "same name") @click.option("--remove/--keep", default=True, help="Controls removal of pod after stopping")