diff --git a/blueprints/bazarr/docker-compose.yml b/blueprints/bazarr/docker-compose.yml new file mode 100644 index 00000000..a0df5be7 --- /dev/null +++ b/blueprints/bazarr/docker-compose.yml @@ -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: {} \ No newline at end of file diff --git a/blueprints/bazarr/logo.png b/blueprints/bazarr/logo.png new file mode 100644 index 00000000..467bde32 Binary files /dev/null and b/blueprints/bazarr/logo.png differ diff --git a/blueprints/bazarr/template.toml b/blueprints/bazarr/template.toml new file mode 100644 index 00000000..95461cce --- /dev/null +++ b/blueprints/bazarr/template.toml @@ -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}" \ No newline at end of file