Add jellyseerr service
This commit is contained in:
30
ServeNix/services/jellyseerr.nix
Normal file
30
ServeNix/services/jellyseerr.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{config, lib, pkgs, ...}:
|
||||||
|
|
||||||
|
{
|
||||||
|
virtualisation.oci-containers.containers.jellyseerr = {
|
||||||
|
image = "fallenbagel/jellyseerr:latest";
|
||||||
|
autoStart = true;
|
||||||
|
|
||||||
|
dependsOn = [
|
||||||
|
"sonarr"
|
||||||
|
"radarr"
|
||||||
|
"jellyfin"
|
||||||
|
];
|
||||||
|
|
||||||
|
ports = [
|
||||||
|
"5055:5055"
|
||||||
|
];
|
||||||
|
|
||||||
|
volumes = [
|
||||||
|
"jellyseerr_config:/app/config"
|
||||||
|
];
|
||||||
|
|
||||||
|
environment = {
|
||||||
|
TZ = "Europe/Berlin";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraOptions = [
|
||||||
|
# "--restart=always" # Conflicts with NixOS' default of using --rm
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user