containerize media-stack
This commit is contained in:
parent
dace31fa3c
commit
27922ebecc
3 changed files with 132 additions and 62 deletions
125
nixos/viridian/containers/media-stack/default.nix
Normal file
125
nixos/viridian/containers/media-stack/default.nix
Normal file
|
@ -0,0 +1,125 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
virtualisation.oci-containers.containers = {
|
||||
# Volunteer-built media solution that puts you in control of your media
|
||||
jellyfin = {
|
||||
autoStart = true;
|
||||
image = "jellyfin/jellyfin:10.8.12";
|
||||
ports = [
|
||||
"8096:8096/tcp" # HTTP traffic
|
||||
"8920:8920/tcp" # HTTPS traffic
|
||||
"1900:1900/udp" # Service auto-discovery
|
||||
"7359:7359/udp" # Client auto-discovery
|
||||
];
|
||||
volumes = [
|
||||
# Media library
|
||||
"/data/media:/media:ro"
|
||||
# Container data
|
||||
"/srv/jellyfin/config:/config:rw"
|
||||
"/srv/jellyfin/cache:/cache:rw"
|
||||
];
|
||||
extraOptions = [
|
||||
"--group-add=303"
|
||||
"--device=/dev/dri/renderD128:/dev/dri/renderD128"
|
||||
"--network=host"
|
||||
];
|
||||
};
|
||||
# PVR for Usenet and BitTorrent users
|
||||
sonarr = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/hotio/sonarr:nightly-4.0.0.710";
|
||||
ports = [
|
||||
"8989:8989/tcp" # WebUI
|
||||
];
|
||||
volumes = [
|
||||
# Media library
|
||||
"/data:/data:rw"
|
||||
# Container data
|
||||
"/srv/sonarr:/config:rw"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=media-stack"
|
||||
];
|
||||
};
|
||||
# Movie collection manager for Usenet and BitTorrent users
|
||||
radarr = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/hotio/radarr:nightly-5.1.3.8237";
|
||||
ports = [
|
||||
"7878:7878/tcp" # WebUI
|
||||
];
|
||||
volumes = [
|
||||
# Media library
|
||||
"/data:/data:rw"
|
||||
# Container data
|
||||
"/srv/radarr:/config:rw"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=media-stack"
|
||||
];
|
||||
};
|
||||
# # Music collection manager for Usenet and BitTorrent users
|
||||
lidarr = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/hotio/lidarr:nightly-2.0.2.377";
|
||||
ports = [
|
||||
"8686:8686/tcp" # WebUI
|
||||
];
|
||||
volumes = [
|
||||
# Media library
|
||||
"/data:/data:rw"
|
||||
# Container data
|
||||
"/srv/lidarr:/config:rw"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=media-stack"
|
||||
];
|
||||
};
|
||||
# Indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps.
|
||||
prowlarr = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/hotio/prowlarr:nightly-1.10.3.4070";
|
||||
ports = [
|
||||
"9696:9696/tcp" # WebUI
|
||||
];
|
||||
volumes = [
|
||||
# Container data
|
||||
"/srv/prowlarr:/config:rw"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=media-stack"
|
||||
];
|
||||
};
|
||||
# Automatically synchronize recommended settings from the TRaSH guides to your Sonarr/Radarr instances
|
||||
recyclarr = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/hotio/recyclarr:6.0";
|
||||
volumes = [
|
||||
"/srv/recyclarr:/config"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=media-stack"
|
||||
];
|
||||
};
|
||||
# # Open-source software alternative to µTorrent
|
||||
qbittorrent = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/hotio/qbittorrent:release-4.6.0";
|
||||
ports = [
|
||||
"8080:8080/tcp" # WebUI
|
||||
"32372:32372/tcp" # Transport protocol
|
||||
];
|
||||
volumes = [
|
||||
# Seedbox
|
||||
"/data/torrents:/data/torrents:rw"
|
||||
"/srv/qbittorrent:/config:rw"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=media-stack"
|
||||
];
|
||||
};
|
||||
};
|
||||
virtualisation.oci-containers.backend = "docker";
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue