Add bazarr service
This commit is contained in:
33
ServeNix/services/bazarr.nix
Normal file
33
ServeNix/services/bazarr.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
virtualisation.oci-containers.containers.bazarr = {
|
||||
image = "linuxserver/bazarr:latest";
|
||||
autoStart = true;
|
||||
|
||||
dependsOn = [];
|
||||
|
||||
ports = [
|
||||
# "6767:6767"
|
||||
];
|
||||
|
||||
volumes = [
|
||||
"bazarr_config:/config"
|
||||
"/media/Show:/tv"
|
||||
"/media/Movie:/movies"
|
||||
];
|
||||
|
||||
environment = {
|
||||
PUID = "3000";
|
||||
PGID = "3000";
|
||||
TZ = "Europe/Berlin";
|
||||
};
|
||||
|
||||
extraOptions = [
|
||||
"--net=behind-nginx"
|
||||
];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user