From 638a944a4b580baec70ea4ec5576ef2af65ccee3 Mon Sep 17 00:00:00 2001 From: Jay Taggart Date: Tue, 31 Jan 2023 13:10:13 +0000 Subject: Add lidarr and readarr --- README.org | 8 ++++++-- docker-compose.example.yaml | 32 ++++++++++++++++++++++++++++++++ install.sh | 2 ++ 3 files changed, 40 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index a1828ca..a4067cc 100644 --- a/README.org +++ b/README.org @@ -13,6 +13,8 @@ Website: [[https://yams.media][https://yams.media]] This script installs the following software: - [[https://sonarr.tv/][Sonarr]] - [[https://radarr.video/][Radarr]] +- [[https://lidarr.audio][Lidarr]] +- [[https://readarr.com/][Readarr]] - [[https://jellyfin.org/][Jellyfin]] - [[https://emby.media/][Emby]] - [[https://www.plex.tv/][Plex]] @@ -23,7 +25,7 @@ This script installs the following software: - [[https://www.portainer.io/][Portainer]] With this combination, you can create a fully functional media server that is going to download, -categorize, subtitle and serve your favorite shows and movies. +categorize, subtitle and serve your favorite shows, movies, audio and books. * Features :PROPERTIES: @@ -60,6 +62,8 @@ Before installing, make sure you have: you choose ~/srv/media~, the script is going to create the following folders: + ~/srv/media/tv~: For your TV shows + ~/srv/media/movies~: For your movies + + ~/srv/media/music~: For your music + + ~/srv/media/books~: For your books + ~/srv/media/downloads~: For your torrent downloads + ~/srv/media/blackhole~: For your torrents blackhole - *A regular user to run and own the media files*: You shouldn't use ~root~ for this user, but I'm not @@ -147,7 +151,7 @@ Just let them know YAMS sent you there 😎 - [ ] Add Jackett as an "yams extra". - [ ] Add [[https://github.com/Fallenbagel/jellyseerr][jellyseer]] or [[https://ombi.io/][Omby]]. - [ ] Add a dashboard like [[https://docs.organizr.app/installation/installing-organizr][Organizr]]. -- [ ] Consider adding [[https://lidarr.audio/][Lidarr]] and [[https://readarr.com/][Readarr]]. +- [X] Consider adding [[https://lidarr.audio/][Lidarr]] and [[https://readarr.com/][Readarr]]. - [ ] Support for qBittorrent themes (VueTorrent). - [ ] Support for Wireguard. - [ ] Check [[https://filebrowser.org/][Filebrowser]]. diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index 4c80437..785a2cc 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -64,6 +64,38 @@ services: - 7878:7878 restart: unless-stopped + # Lidarr is used to query, add downloads to the download queue and index Music + # https://lidarr.audio/ + lidarr: + image: lscr.io/linuxserver/lidarr + container_name: lidarr + environment: + - PUID= + - PGID= + volumes: + - /music:/music + - /downloads:/downloads + - /config/lidarr:/config + ports: + - 8686:8686 + restart: unless-stopped + + # Readarr is used to query, add downloads to the download queue and index Audio and Ebooks + # https://readarr.com/ + readarr: + image: lscr.io/linuxserver/readarr + container_name: readarr + environment: + - PUID= + - PGID= + volumes: + - /books:/books + - /downloads:/downloads + - /config/readarr:/config + ports: + - 8787:8787 + restart: unless-stopped + # Bazarr is used to download and categorize subtitles bazarr: image: lscr.io/linuxserver/bazarr diff --git a/install.sh b/install.sh index 94e2111..b5b57cb 100755 --- a/install.sh +++ b/install.sh @@ -57,6 +57,8 @@ running_services_location() { echo "qBittorrent: http://$host_ip:8080/" echo "Radarr: http://$host_ip:7878/" echo "Sonarr: http://$host_ip:8989/" + echo "Lidarr: http://$host_ip:8686/" + echo "Readarr: http://$host_ip:8787/" echo "Prowlarr: http://$host_ip:9696/" echo "Bazarr: http://$host_ip:6767/" echo "$media_service: http://$host_ip:$media_service_port/" -- cgit v1.2.3