Add support for Bazarr

This commit is contained in:
Luctia
2024-01-27 23:49:51 +01:00
parent 69b96cd91e
commit 8ee5c820cc
6 changed files with 46 additions and 1 deletions

View File

@@ -105,6 +105,23 @@ class ContainerConfig:
' restart: unless-stopped\n\n'
)
def bazarr(self):
return (
' bazarr:\n'
' image: lscr.io/linuxserver/bazarr:latest\n'
' container_name: bazarr\n'
' environment:\n'
' - PUID=13013\n'
' - PGID=13000\n'
' - TZ=' + self.timezone + '\n'
' volumes:\n'
' - ' + self.config_dir + '/bazarr-config:/config\n'
' - ' + self.root_dir + '/data/media:/media\n'
' ports:\n'
' - "6767:6767"\n'
' restart: unless-stopped\n\n'
)
def lidarr(self):
return (
' lidarr:\n'