34 lines
486 B
Nix
34 lines
486 B
Nix
{
|
|
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"
|
|
];
|
|
};
|
|
}
|