Add Bazarr blueprint with Docker Compose and configuration files

- Introduced Docker Compose setup for Bazarr service, including environment variables and volume configuration.
- Added logo for Bazarr.
- Created template.toml for Bazarr with default variables for configuration.
This commit is contained in:
Mauricio Siu
2025-03-30 15:15:22 -06:00
parent d06d7ad2f7
commit 7d5cb0ea67
3 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
[variables]
main_domain = "${domain}"
movies_path = "/path/to/movies"
tv_path = "/path/to/tv"
[config]
[[config.domains]]
serviceName = "bazarr"
port = 6767
host = "${main_domain}"
[config.env]
MOVIES_PATH = "${movies_path}"
TV_PATH = "${tv_path}"