add tolgee

This commit is contained in:
Daniel Bulant 2026-04-18 18:35:14 +02:00
parent 51f7519c3b
commit c506215847
No known key found for this signature in database

View file

@ -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";
};
};
};
};
};