From d7a081aafe5508c931480009130d5790d6045251 Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 29 Aug 2023 10:24:13 -0700 Subject: [PATCH] Redis data path was wrong --- authentik-container.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik-container.nix b/authentik-container.nix index 647d027..64e7d7d 100644 --- a/authentik-container.nix +++ b/authentik-container.nix @@ -144,7 +144,7 @@ in { image = cfg.images.redis; restart = "always"; command = "--save 60 1 --loglevel warning"; - volumes = [ "${cfg.state-directory}:/data" ]; + volumes = [ "${cfg.state-directory}/redis:/data" ]; healthcheck = { test = [ "CMD" "redis-cli" "ping" ]; start_period = "20s";