Bazarr

Link to App

Link to GitHub or Website

Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.

This app is hosted on Latte as a docker container

https://github.com/trentnbauer/agg/blob/f4800fa7c650257cb88ac9ef4fd099c4c402a097/docker-compose/bazarr.yml
version: '2.3'
services:
  app:
    image: ghcr.io/linuxserver/bazarr:v1.4.3-ls255
    environment:
      - TZ=Australia/Melbourne
    volumes:
      - config:/config
      - media:/media
    ports:
      - ${PORT:-6767}:6767
    restart: unless-stopped
    logging:
      driver: "json-file"
      options:
        max-size: "10m"
        max-file: "3" 
    healthcheck:
      test: curl --connect-timeout 15 --silent --show-error --fail -k http://localhost:6767
      interval: 30s
      retries: 3
      start_period: 30s
      timeout: 20s
    labels:
      - "autoheal=true"
volumes:
  config:
  media:
    driver_opts:
      type: "nfs"
      o: addr=$MEDIASERV,nfsvers=4
      device: $MEDIAPATH
Port
Purpose

6767

WebUJ

Host Volume
Container Volume
Purpose

bazarr_media

/media

Fettuccine NFS share

bazarr_config

/config

server configs

Integration
Purpose

Radarr

Pulls library items

Sonarr

Pullsl ibrary items

Last updated

Was this helpful?