From 4fc5c0fef37c1a866cfeb1b709d451564aaea557 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Fri, 20 Jan 2023 12:14:45 -0300 Subject: Replaced jackett with prowlarr --- docker-compose.example.yaml | 14 ++++++-------- install.sh | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml index 4ca31d9..b0b025b 100644 --- a/docker-compose.example.yaml +++ b/docker-compose.example.yaml @@ -77,20 +77,18 @@ services: - 6767:6767 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 - jackett: - image: ghcr.io/linuxserver/jackett - container_name: jackett + prowlarr: + image: lscr.io/linuxserver/prowlarr:latest + container_name: prowlarr environment: - PUID= - PGID= - - AUTO_UPDATE="True" volumes: - - /blackhole:/downloads - - /config/jackett:/config + - /config/prowlarr:/config ports: - - 9117:9117 + - 9696:9696 restart: unless-stopped # Gluetun is our VPN, so you can download torrents safely diff --git a/install.sh b/install.sh index e3cdc43..f1355de 100755 --- a/install.sh +++ b/install.sh @@ -52,10 +52,10 @@ check_dependencides() { running_services_location() { host_ip=$(hostname -I | awk '{ print $1 }') - echo "Jackett: http://$host_ip:9117/" echo "qBittorrent: http://$host_ip:8080/" echo "Radarr: http://$host_ip:7878/" echo "Sonarr: http://$host_ip:8989/" + echo "Prowlarr: http://$host_ip:9696/" echo "Bazarr: http://$host_ip:6767/" echo "Emby: http://$host_ip:8096/" } -- cgit v1.2.3