docker-bits/lsio/bazarr/docker-run.sh

17 lines
825 B
Bash
Raw Normal View History

2021-04-10 10:16:29 +00:00
# Bazarr 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.
source ./.env
docker run -d \
--name=bazarr \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
-e TZ=Europe/Amsterdam `# Specify a timezone to use for example Europe/Amsterdam` \
-p 6767:6767 `# Allows HTTP access to the internal webserver.` \
-v ${BASEDIR:-/volume1/docker}/bazarr/config:/config `# Bazarr data` \
-v ${BASEDIR:-/volume1/docker}/bazarr/movies:/movies `# optional` `# Location of your movies` \
-v ${BASEDIR:-/volume1/docker}/bazarr/tv:/tv `# optional` `# Location of your TV Shows` \
--restart unless-stopped \
ghcr.io/linuxserver/bazarr