Add lidarr and readarr
This commit is contained in:
parent
e0bd92f1cb
commit
638a944a4b
@ -13,6 +13,8 @@ Website: [[https://yams.media][https://yams.media]]
|
|||||||
This script installs the following software:
|
This script installs the following software:
|
||||||
- [[https://sonarr.tv/][Sonarr]]
|
- [[https://sonarr.tv/][Sonarr]]
|
||||||
- [[https://radarr.video/][Radarr]]
|
- [[https://radarr.video/][Radarr]]
|
||||||
|
- [[https://lidarr.audio][Lidarr]]
|
||||||
|
- [[https://readarr.com/][Readarr]]
|
||||||
- [[https://jellyfin.org/][Jellyfin]]
|
- [[https://jellyfin.org/][Jellyfin]]
|
||||||
- [[https://emby.media/][Emby]]
|
- [[https://emby.media/][Emby]]
|
||||||
- [[https://www.plex.tv/][Plex]]
|
- [[https://www.plex.tv/][Plex]]
|
||||||
@ -23,7 +25,7 @@ This script installs the following software:
|
|||||||
- [[https://www.portainer.io/][Portainer]]
|
- [[https://www.portainer.io/][Portainer]]
|
||||||
|
|
||||||
With this combination, you can create a fully functional media server that is going to download,
|
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
|
* Features
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
@ -60,6 +62,8 @@ Before installing, make sure you have:
|
|||||||
you choose ~/srv/media~, the script is going to create the following folders:
|
you choose ~/srv/media~, the script is going to create the following folders:
|
||||||
+ ~/srv/media/tv~: For your TV shows
|
+ ~/srv/media/tv~: For your TV shows
|
||||||
+ ~/srv/media/movies~: For your movies
|
+ ~/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/downloads~: For your torrent downloads
|
||||||
+ ~/srv/media/blackhole~: For your torrents blackhole
|
+ ~/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
|
- *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 Jackett as an "yams extra".
|
||||||
- [ ] Add [[https://github.com/Fallenbagel/jellyseerr][jellyseer]] or [[https://ombi.io/][Omby]].
|
- [ ] Add [[https://github.com/Fallenbagel/jellyseerr][jellyseer]] or [[https://ombi.io/][Omby]].
|
||||||
- [ ] Add a dashboard like [[https://docs.organizr.app/installation/installing-organizr][Organizr]].
|
- [ ] 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 qBittorrent themes (VueTorrent).
|
||||||
- [ ] Support for Wireguard.
|
- [ ] Support for Wireguard.
|
||||||
- [ ] Check [[https://filebrowser.org/][Filebrowser]].
|
- [ ] Check [[https://filebrowser.org/][Filebrowser]].
|
||||||
|
@ -64,6 +64,38 @@ services:
|
|||||||
- 7878:7878
|
- 7878:7878
|
||||||
restart: unless-stopped
|
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=<your_PUID>
|
||||||
|
- PGID=<your_PGID>
|
||||||
|
volumes:
|
||||||
|
- <media_folder>/music:/music
|
||||||
|
- <media_folder>/downloads:/downloads
|
||||||
|
- <install_location>/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=<your_PUID>
|
||||||
|
- PGID=<your_PGID>
|
||||||
|
volumes:
|
||||||
|
- <media_folder>/books:/books
|
||||||
|
- <media_folder>/downloads:/downloads
|
||||||
|
- <install_location>/config/readarr:/config
|
||||||
|
ports:
|
||||||
|
- 8787:8787
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
# Bazarr is used to download and categorize subtitles
|
# Bazarr is used to download and categorize subtitles
|
||||||
bazarr:
|
bazarr:
|
||||||
image: lscr.io/linuxserver/bazarr
|
image: lscr.io/linuxserver/bazarr
|
||||||
|
@ -57,6 +57,8 @@ running_services_location() {
|
|||||||
echo "qBittorrent: http://$host_ip:8080/"
|
echo "qBittorrent: http://$host_ip:8080/"
|
||||||
echo "Radarr: http://$host_ip:7878/"
|
echo "Radarr: http://$host_ip:7878/"
|
||||||
echo "Sonarr: http://$host_ip:8989/"
|
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 "Prowlarr: http://$host_ip:9696/"
|
||||||
echo "Bazarr: http://$host_ip:6767/"
|
echo "Bazarr: http://$host_ip:6767/"
|
||||||
echo "$media_service: http://$host_ip:$media_service_port/"
|
echo "$media_service: http://$host_ip:$media_service_port/"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user