mirror of
https://github.com/danbulant/dotfiles
synced 2026-07-06 03:31:33 +00:00
add tolgee
This commit is contained in:
parent
51f7519c3b
commit
c506215847
1 changed files with 14 additions and 0 deletions
|
|
@ -19,6 +19,7 @@ let
|
||||||
prowlarr = 9696;
|
prowlarr = 9696;
|
||||||
keep = 8100;
|
keep = 8100;
|
||||||
grafana = 3002;
|
grafana = 3002;
|
||||||
|
tolgee = 8200;
|
||||||
# ntfy = 3003;
|
# ntfy = 3003;
|
||||||
};
|
};
|
||||||
internalPorts = {
|
internalPorts = {
|
||||||
|
|
@ -327,6 +328,19 @@ in
|
||||||
extraOptions = [ "--network=host" ];
|
extraOptions = [ "--network=host" ];
|
||||||
# ports = [ "8000:${toString internalPorts.prometheus-qb}" ];
|
# ports = [ "8000:${toString internalPorts.prometheus-qb}" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tolgee = {
|
||||||
|
image = "tolgee/tolgee";
|
||||||
|
volumes = [
|
||||||
|
"data:/data"
|
||||||
|
];
|
||||||
|
ports = [
|
||||||
|
"${toString ports.tolgee}:8080"
|
||||||
|
];
|
||||||
|
environment = {
|
||||||
|
TOLGEE_AUTHENTICATION_ENABLED = "true";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue