Sign inSign up

culater/bazarr

By culater

Updated 4 days ago

The Bazarr App in a Docker Container

Image
0

6.9K

culater/bazarr repository overview

docker-bazarr

pipeline status Bazarr Release Docker link

This is part of a collection of docker images, designed to run on my low-end x86 based QNAP NAS server.

Docker image

The resulting docker image can be found here https://hub.docker.com/r/culater/bazarr

Example usage

docker cli run example:

docker run -d \
  -e PUID=1000 \
  -e PGID=1000 \
  -e TZ=Europe/Berlin \
  -p 6767:6767 \
  -v /path/to/config:/config \
  --restart unless-stopped \
  culater/bazarr

docker compose example:

---
version: '3'
services:
  bazarr:
    image: culater/bazarr:latest
    container_name: bazarr
    hostname: bazarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
    volumes:
      - /path/to/config:/config
      - /path/to/movies:/movies
      - /path/to/tvshows:/tvshows
    ports:
      - 6767:6767
    restart: unless-stopped

Reporting problems

Please report any issues to the Gitlab issue tracker

Authors and acknowledgment

More information about bazarr can be found here: Bazarr Project

Project status

The docker image auto-updates after a new release of bazarr within a few days. The bazarr version this docker build is based on can be seen from the release tag.

Tag summary

Content type

Image

Digest

sha256:5cb947df2

Size

114 MB

Last updated

4 days ago

docker pull culater/bazarr