nixos-configs/devices/nos/modules/docker/media/seerr/compose.nix

27 lines
466 B
Nix
Raw Normal View History

2024-07-24 15:49:31 -04:00
{
config,
pkgs,
...
}: let
inherit (config.khepri) rwDataDir;
rwPath = rwDataDir + "/media/seerr";
in {
2024-07-24 15:49:31 -04:00
khepri.compositions."seerr".services."seerr" = {
image = import ./images/jellyseerr.nix pkgs;
restart = "always";
environment = {
LOG_LEVEL = "debug";
TZ = "America/New_York";
};
volumes = [
"${rwPath}/data:/app/config"
];
2024-07-24 15:49:31 -04:00
extraHosts = ["lan.nelim.org=10.0.0.130"];
ports = ["5055:5055"];
};
}