Changed Jackett for Prowlarr #50

Merged
rogs merged 2 commits from add-prowlarr into master 2023-01-20 15:43:47 -03:00
3 changed files with 10 additions and 12 deletions

View File

@ -16,7 +16,7 @@ This script installs the following software:
- [[https://emby.media/][Emby]] - [[https://emby.media/][Emby]]
- [[https://www.qbittorrent.org/][qBittorrent]] - [[https://www.qbittorrent.org/][qBittorrent]]
- [[https://www.bazarr.media/][Bazarr]] - [[https://www.bazarr.media/][Bazarr]]
- [[https://github.com/Jackett/Jackett][Jackett]] - [[https://github.com/Prowlarr/Prowlarr][Prowlarr]]
- [[https://github.com/qdm12/gluetun][gluetun]] - [[https://github.com/qdm12/gluetun][gluetun]]
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,
@ -124,7 +124,7 @@ They are the ones doing the real work, I just created a docker-compose file and
- [[https://www.qbittorrent.org/donate][qBittorrent donations page]] - [[https://www.qbittorrent.org/donate][qBittorrent donations page]]
- [[https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=XHHRWXT9YB7WE&source=url][Bazarr donations page]] - [[https://www.paypal.com/donate/?cmd=_s-xclick&hosted_button_id=XHHRWXT9YB7WE&source=url][Bazarr donations page]]
- [[https://www.paypal.me/qmcgaw][gluetun donations page]] - [[https://www.paypal.me/qmcgaw][gluetun donations page]]
- Jackett does not have a donation page 🤔 - [[https://opencollective.com/Prowlarr#sponsor][Prowlarr donations page]]
Just let them know YAMS sent you there 😎 Just let them know YAMS sent you there 😎
@ -138,7 +138,7 @@ Just let them know YAMS sent you there 😎
- [[https://emby.media/][Emby]] - [[https://emby.media/][Emby]]
- [[https://www.qbittorrent.org/][qBittorrent]] - [[https://www.qbittorrent.org/][qBittorrent]]
- [[https://www.bazarr.media/][Bazarr]] - [[https://www.bazarr.media/][Bazarr]]
- [[https://github.com/Jackett/Jackett][Jackett]] - [[https://github.com/Prowlarr/Prowlarr][Prowlarr]]
- My friends: - My friends:
+ [[https://github.com/xploshioOn][xploshioOn]] + [[https://github.com/xploshioOn][xploshioOn]]
+ [[https://github.com/norlis][norlis]] + [[https://github.com/norlis][norlis]]

View File

@ -77,20 +77,18 @@ services:
- 6767:6767 - 6767:6767
restart: unless-stopped restart: unless-stopped
# Jackett is our torrent indexer/searcher. Sonarr/Radarr use Jackett as a # Prowlarr is our torrent indexer/searcher. Sonarr/Radarr use Prowlarr as a
# source # source
jackett: prowlarr:
image: ghcr.io/linuxserver/jackett image: lscr.io/linuxserver/prowlarr:latest
container_name: jackett container_name: prowlarr
environment: environment:
- PUID=<your_PUID> - PUID=<your_PUID>
- PGID=<your_PGID> - PGID=<your_PGID>
- AUTO_UPDATE="True"
volumes: volumes:
- <media_folder>/blackhole:/downloads - <install_location>/config/prowlarr:/config
- <install_location>/config/jackett:/config
ports: ports:
- 9117:9117 - 9696:9696
restart: unless-stopped restart: unless-stopped
# Gluetun is our VPN, so you can download torrents safely # Gluetun is our VPN, so you can download torrents safely

View File

@ -52,10 +52,10 @@ check_dependencides() {
running_services_location() { running_services_location() {
host_ip=$(hostname -I | awk '{ print $1 }') host_ip=$(hostname -I | awk '{ print $1 }')
echo "Jackett: http://$host_ip:9117/"
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 "Prowlarr: http://$host_ip:9696/"
echo "Bazarr: http://$host_ip:6767/" echo "Bazarr: http://$host_ip:6767/"
echo "Emby: http://$host_ip:8096/" echo "Emby: http://$host_ip:8096/"
} }