mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
- 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.
14 lines
250 B
TOML
14 lines
250 B
TOML
[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}" |