This is part of a collection of docker images, designed to run on my low-end x86 based QNAP NAS server.
The resulting docker image can be found here https://hub.docker.com/r/culater/bazarr
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
Please report any issues to the Gitlab issue tracker
More information about bazarr can be found here: Bazarr Project
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.
Content type
Image
Digest
sha256:5cb947df2…
Size
114 MB
Last updated
4 days ago
docker pull culater/bazarr