Services/Jellyfin: Update to v10.10.7
This commit is contained in:
@ -3,46 +3,50 @@
|
|||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: let
|
||||||
virtualisation.oci-containers.containers.jellyfin = {
|
jellyfinVersion = "10.10.7";
|
||||||
image = "linuxserver/jellyfin:latest";
|
in {
|
||||||
autoStart = true;
|
virtualisation.oci-containers.containers = {
|
||||||
|
jellyfin = {
|
||||||
|
image = "linuxserver/jellyfin:${jellyfinVersion}";
|
||||||
|
autoStart = true;
|
||||||
|
|
||||||
login = {
|
login = {
|
||||||
# Uses DockerHub by default
|
# Uses DockerHub by default
|
||||||
# registry = "";
|
# registry = "";
|
||||||
|
|
||||||
# DockerHub Credentials
|
# DockerHub Credentials
|
||||||
username = "christoph.urlacher@protonmail.com";
|
username = "christoph.urlacher@protonmail.com";
|
||||||
passwordFile = "${config.sops.secrets.docker-password.path}";
|
passwordFile = "${config.sops.secrets.docker-password.path}";
|
||||||
|
};
|
||||||
|
|
||||||
|
dependsOn = [
|
||||||
|
# "pihole"
|
||||||
|
];
|
||||||
|
|
||||||
|
ports = [
|
||||||
|
"8096:8096"
|
||||||
|
];
|
||||||
|
|
||||||
|
volumes = [
|
||||||
|
"/media/Show:/data/tvshows"
|
||||||
|
"/media/Movie:/data/movies"
|
||||||
|
"/media/TV-Music:/data/music"
|
||||||
|
|
||||||
|
"jellyfin_config:/config"
|
||||||
|
];
|
||||||
|
|
||||||
|
environment = {
|
||||||
|
PUID = "3000";
|
||||||
|
PGID = "3000";
|
||||||
|
TZ = "Europe/Berlin";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraOptions = [
|
||||||
|
# "--privileged"
|
||||||
|
"--device=nvidia.com/gpu=all"
|
||||||
|
"--net=behind-nginx"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
dependsOn = [
|
|
||||||
# "pihole"
|
|
||||||
];
|
|
||||||
|
|
||||||
ports = [
|
|
||||||
"8096:8096"
|
|
||||||
];
|
|
||||||
|
|
||||||
volumes = [
|
|
||||||
"/media/Show:/data/tvshows"
|
|
||||||
"/media/Movie:/data/movies"
|
|
||||||
"/media/TV-Music:/data/music"
|
|
||||||
|
|
||||||
"jellyfin_config:/config"
|
|
||||||
];
|
|
||||||
|
|
||||||
environment = {
|
|
||||||
PUID = "3000";
|
|
||||||
PGID = "3000";
|
|
||||||
TZ = "Europe/Berlin";
|
|
||||||
};
|
|
||||||
|
|
||||||
extraOptions = [
|
|
||||||
# "--privileged"
|
|
||||||
"--device=nvidia.com/gpu=all"
|
|
||||||
"--net=behind-nginx"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user