From c50621584739b6b140c5db69956656c9cbaf841e Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Sat, 18 Apr 2026 18:35:14 +0200 Subject: [PATCH] add tolgee --- servers/eisen/configuration.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/servers/eisen/configuration.nix b/servers/eisen/configuration.nix index 1cdf300..301f4fc 100644 --- a/servers/eisen/configuration.nix +++ b/servers/eisen/configuration.nix @@ -19,6 +19,7 @@ let prowlarr = 9696; keep = 8100; grafana = 3002; + tolgee = 8200; # ntfy = 3003; }; internalPorts = { @@ -327,6 +328,19 @@ in extraOptions = [ "--network=host" ]; # ports = [ "8000:${toString internalPorts.prometheus-qb}" ]; }; + + tolgee = { + image = "tolgee/tolgee"; + volumes = [ + "data:/data" + ]; + ports = [ + "${toString ports.tolgee}:8080" + ]; + environment = { + TOLGEE_AUTHENTICATION_ENABLED = "true"; + }; + }; }; }; };