Add jellyfin service
This commit is contained in:
parent
ceb58ff1b2
commit
ac45f86cb5
2 changed files with 49 additions and 0 deletions
|
|
@ -136,6 +136,33 @@ in
|
|||
autoStart = true;
|
||||
};
|
||||
|
||||
# Jellyfin media server (alternative to Plex)
|
||||
jellyfin = {
|
||||
image = "docker.io/linuxserver/jellyfin:latest";
|
||||
|
||||
volumes = [
|
||||
"/var/lib/containers/jellyfin/config:/config"
|
||||
"/mnt/storage/Media:/data"
|
||||
];
|
||||
|
||||
environment = {
|
||||
PUID = commonUID;
|
||||
PGID = commonGID;
|
||||
TZ = systemTZ;
|
||||
};
|
||||
|
||||
ports = [
|
||||
"5002:8096"
|
||||
];
|
||||
|
||||
extraOptions = [
|
||||
"--network=podman"
|
||||
"--device=/dev/dri:/dev/dri" # Hardware acceleration
|
||||
];
|
||||
|
||||
autoStart = true;
|
||||
};
|
||||
|
||||
# Sonarr TV show management
|
||||
sonarr = {
|
||||
image = "docker.io/linuxserver/sonarr:latest";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue