Maintained by Thijmen Heuvelink

Bazarr is a handy tool designed to manage and download subtitles for your media files, ensuring that your movies and TV shows are equipped with accurate subtitles for an enhanced viewing experience.

Docker Compose

Save the following contents as a docker-compose.yml file.

version: "2.1"
services:
  bazarr:
    image: lscr.io/linuxserver/bazarr:latest
    container_name: bazarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Amsterdam
    volumes:
      - ./config:/config
      - ./data/movies:/movies
      - ./data/series:/tv
    ports:
      - 6767:6767
    restart: unless-stopped

Start it

docker-compose up -d

This knowledge base serves as a valuable tool to simplify installations, troubleshoot common problems and to enhance the overall developer / admin experience. mail@thijmenheuvelink.nl - all rights reserved