mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
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:
parent
d06d7ad2f7
commit
7d5cb0ea67
18
blueprints/bazarr/docker-compose.yml
Normal file
18
blueprints/bazarr/docker-compose.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
bazarr:
|
||||||
|
image: lscr.io/linuxserver/bazarr:1.5.1
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 6767
|
||||||
|
environment:
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=UTC
|
||||||
|
volumes:
|
||||||
|
- config:/config
|
||||||
|
- ${MOVIES_PATH}:/movies
|
||||||
|
- ${TV_PATH}:/tv
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
config: {}
|
BIN
blueprints/bazarr/logo.png
Normal file
BIN
blueprints/bazarr/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
14
blueprints/bazarr/template.toml
Normal file
14
blueprints/bazarr/template.toml
Normal 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}"
|
Loading…
Reference in New Issue
Block a user