From 816737cf99fafada3677df033b69bc847729f333 Mon Sep 17 00:00:00 2001 From: kphilippart Date: Sun, 28 Jan 2024 16:27:55 +0100 Subject: [PATCH 1/2] Update docker-compose.yml --- docker-compose.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index cb4bc6f..dc86ae8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -131,6 +131,36 @@ services: - homepage.widget.key=${LIDARR_API_KEY} profiles: - lidarr + bazarr: + image: lscr.io/linuxserver/bazarr + container_name: bazarr + environment: + - PUID=${USER_ID} + - PGID=${GROUP_ID} + - TZ=${TIMEZONE} + volumes: + - ./bazarr/config:/config + - ${DATA_ROOT}:/data + restart: always + healthcheck: + test: [ "CMD", "curl", "--fail", "http://127.0.0.1:6767/bazarr/ping" ] + interval: 5s + retries: 10 + labels: + - traefik.enable=true + - traefik.http.routers.bazarr.rule=(Host(`${HOSTNAME}`) && PathPrefix(`/bazarr`)) + - traefik.http.routers.bazarr.tls=true + - traefik.http.routers.bazarr.tls.certresolver=myresolver + - traefik.http.services.bazarr.loadbalancer.server.port=6767 + - homepage.group=Media + - homepage.name=Bazarr + - homepage.icon=bazarr.png + - homepage.href=/bazarr + - homepage.description=Subtitles management + - homepage.weight=0 + - homepage.widget.type=bazarr + - homepage.widget.url=http://bazarr:6767/bazarr + - homepage.widget.key=${BAZARR_API_KEY} jellyseerr: image: fallenbagel/jellyseerr:latest container_name: jellyseerr From 0ee728d361e08bb700a724fb32ea1e753d962cb1 Mon Sep 17 00:00:00 2001 From: kphilippart Date: Sun, 28 Jan 2024 16:37:40 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 86403b1..649f37a 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,7 @@ I am running it in Ubuntu Server 22.04; I also tested this setup on a [Synology |-------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|--------------| | [Sonarr](https://sonarr.tv) | PVR for newsgroup and bittorrent users | [linuxserver/sonarr](https://hub.docker.com/r/linuxserver/sonarr) | /sonarr | | [Radarr](https://radarr.video) | Movie collection manager for Usenet and BitTorrent users | [linuxserver/radarr](https://hub.docker.com/r/linuxserver/radarr) | /radarr | +| [Bazarr](https://www.bazarr.media/) | Companion application to Sonarr and Radarr that manages and downloads subtitles | [linuxserver/bazarr](https://hub.docker.com/r/linuxserver/bazarr) | /bazarr | | [Prowlarr](https://github.com/Prowlarr/Prowlarr) | Indexer aggregator for Sonarr and Radarr | [linuxserver/prowlarr:latest](https://hub.docker.com/r/linuxserver/prowlarr) | /prowlarr | | [PIA WireGuard VPN](https://github.com/thrnz/docker-wireguard-pia) | Encapsulate qBittorrent traffic in [PIA](https://www.privateinternetaccess.com/) using [WireGuard](https://www.wireguard.com/) with port forwarding. | [thrnz/docker-wireguard-pia](https://hub.docker.com/r/thrnz/docker-wireguard-pia) | | | [qBittorrent](https://www.qbittorrent.org) | Bittorrent client with a complete web UI
Uses VPN network
Using Libtorrent 1.x | [linuxserver/qbittorrent:libtorrentv1](https://hub.docker.com/r/linuxserver/qbittorrent) | /qbittorrent | @@ -89,6 +90,7 @@ For the first time, run `./update-config.sh` to update the applications base URL Get your qBittorrent password from `docker compose logs qbittorrent` and change it in the UI and in `.env.` If you want to show Jellyfin information in the homepage, create it in Jellyfin settings and fill `JELLYFIN_API_KEY`. +If you want to show Bazarr information in the homepage, open `./bazarr/config/config.yml`, find the apikey line and copy it in your .env file in a new line: `BAZARR_API_KEY='your_bazar_api_key'` ## Environment Variables @@ -150,7 +152,7 @@ The location of the server it will connect to is set by `LOC=ca`, defaulting to You need to fill the credentials in the `PIA_*` environment variable, otherwise the VPN container will exit and qBittorrent will not start. -## Sonarr, Radarr & Lidarr +## Sonarr, Radarr, Lidarr & Bazarr ### File Structure