You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.0 KiB
YAML

# [Bazarr](https://www.bazarr.media/) is a companion application to Sonarr and
# Radarr. It can manage and download subtitles based on your requirements. You
# define your preferences by TV show or movie and Bazarr takes care of
# everything for you.
---
version: "2.1"
services:
bazarr:
image: ghcr.io/linuxserver/bazarr
container_name: bazarr
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Persistent config files
- ${BASEDIR:-/volume1/docker}/bazarr/config:/config
# Location of your movies
- ${BASEDIR:-/volume1/docker}/bazarr/movies:/movies # optional
# Location of your TV Shows
- ${BASEDIR:-/volume1/docker}/bazarr/tv:/tv # optional
ports:
# Allows HTTP access to the internal webserver.
- 6767:6767
restart: unless-stopped