added bazarr anime support

This commit is contained in:
Harry 2024-08-26 11:13:47 +02:00
parent 164ff07be1
commit 0aa7b0ba9e
2 changed files with 23 additions and 1 deletions

View file

@ -75,6 +75,10 @@
"http://bazarr.sisyphe.normandy.hypervirtual.world".extraConfig = '' "http://bazarr.sisyphe.normandy.hypervirtual.world".extraConfig = ''
reverse_proxy :6767 reverse_proxy :6767
''; '';
"http://bazarr-anime.sisyphe.normandy.hypervirtual.world".extraConfig = ''
reverse_proxy :6777
'';
}; };
}; };

View file

@ -5,7 +5,11 @@
containers = { containers = {
sonarrAnime = { sonarrAnime = {
image = "lscr.io/linuxserver/sonarr:latest"; image = "lscr.io/linuxserver/sonarr:latest";
volumes = [ "sonarr_data:/config" "/srv/Multimedia/DessinsAnime:/tv" "/srv/Multimedia/Torrents:/srv/Multimedia/Torrents" ]; volumes = [
"sonarr_data:/config"
"/srv/Multimedia/DessinsAnime:/tv"
"/srv/Multimedia/Torrents:/srv/Multimedia/Torrents"
];
ports = [ "8999:8989" ]; ports = [ "8999:8989" ];
environment = { environment = {
"PUID" = "1000"; "PUID" = "1000";
@ -13,6 +17,20 @@
"TZ" = "Europe/Paris"; "TZ" = "Europe/Paris";
}; };
}; };
bazarrAnime = {
image = "lscr.io/linuxserver/bazarr:latest";
volumes = [
"bazarr_data:/config"
"/srv/Multimedia/DessinsAnime:/tv"
];
ports = [ "6777:6777" ];
environment = {
"PUID" = "1000";
"GUID" = "1000";
"TZ" = "Europe/Paris";
};
};
}; };
}; };
} }