nixos-configs/devices/nas/modules/arion/media/seerr/compose.nix
matt1432 ef1cdbf86f
All checks were successful
Discord / discord commits (push) Has been skipped
feat(arion): migrate all media docker containers
2024-02-28 22:22:14 -05:00

21 lines
378 B
Nix

{config, ...}: let
inherit (config.arion) rwDataDir;
rwPath = rwDataDir + "/media/seerr";
in {
arion.projects."seerr"."seerr" = {
image = ./images/jellyseerr.nix;
restart = "always";
environment = {
LOG_LEVEL = "debug";
TZ = "America/New_York";
};
volumes = [
"${rwPath}/data:/app/config"
];
ports = ["5055:5055"];
};
}