added bazarr container

dev-docs
Moritz Böhme 2021-10-06 16:56:27 +02:00
parent 3c4d59c3b5
commit 7ad9eb5726
1 changed files with 14 additions and 0 deletions

View File

@ -69,5 +69,19 @@
];
ports = [ "8989:8989" ];
};
"bazarr" = {
image = "linuxserver/bazarr";
environment = {
"PUID" = "1000";
"PGID" = "100";
"TZ" = "DE";
};
volumes = [
"/media/media/tv:/tv"
"/media/media/movies:/movies"
"/home/moritz/Docker/Bazarr:/config"
];
ports = [ "6767:6767" ];
};
};
}