From 2de86ad89ff488a2601dcc3ba960cbfea3851889 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Fri, 16 Sep 2022 23:27:56 +0200 Subject: [PATCH] fix(watchtower): fix config WATCHTOWER_INCLUDE_RESTARTING doesn't seem to work with podman. --- services/watchtower.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/watchtower.nix b/services/watchtower.nix index 955ea85..dd83675 100644 --- a/services/watchtower.nix +++ b/services/watchtower.nix @@ -11,7 +11,7 @@ ]; environment = { WATCHTOWER_CLEANUP = "true"; - WATCHTOWER_INCLUDE_RESTARTING = "true"; + WATCHTOWER_INCLUDE_STOPPED = "true"; }; }; };