• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle

  • This is the compose file I use, with Gluetun setup with ProtonVPN. I edited it to remove some personal machine stuff so adapt volumes to your liking.

    version: "2.1"
    services:
      jackett:
        image: lscr.io/linuxserver/jackett:latest
        container_name: jackett
        network_mode: service:gluetun
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/London
        volumes:
          - ./data:/config
          - ./downloads:/downloads
        restart: unless-stopped
        depends_on:
          - gluetun
    
      qbittorrent:
        image: lscr.io/linuxserver/qbittorrent:4.5.5-r0-ls291
        container_name: qbittorrent
        network_mode: service:gluetun
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Etc/UTC
          - WEBUI_PORT=8084
        volumes:
          - a-place/qbittorrent/config:/config
          - a-place/qbittorrent:/downloads
        restart: unless-stopped
        depends_on:
          - gluetun
    
      flaresolverr:
        container_name: flaresolverr
        network_mode: service:gluetun
        environment:
          - LOG_LEVEL=info
        restart: unless-stopped
        image: ghcr.io/flaresolverr/flaresolverr:latest
        depends_on:
          - gluetun
    
      gluetun:
        image: qmcgaw/gluetun
        container_name: gluetun
        networks:
          pirate_net:
        cap_add:
          - NET_ADMIN
          - SYS_MODULE
        environment:
          - VPN_SERVICE_PROVIDER=custom
          - VPN_TYPE=wireguard
        ports:
          - 9117:9117 # Jackett
          - 8084:8084
          - 6881:6881
          - 6881:6881/udp
          - 8191:8191 # Flaresolverr
        volumes:
          - ./config/:/gluetun/wireguard/
    
    networks:
      pirate_net:
        driver: bridge
    



  • I believe they only care about concurrent IPs, not concurrent use in general. If the IP is the same for all downloads then I don’t think they’ll send you a warning. Just make sure the VPN clients have a killswitch though.

    They go by a ‘2 strikes in a week’ system to account for accidental misuse. If they see 2 IPs used at once then they’ll reset your API key and tell you they’ll block your account if you do it again in the next 7 days.

    I pay for 2 accounts personally because it’s still far cheaper than watching things ‘the proper way’.








  • I think a mixture of Jellyfin and Lidarr are what you’re looking for, but I haven’t tried out Lidarr personally. If it’s as good as Sonarr then it probably works well.

    Jellyfin is a media server, so can be access from any device. Most use it for TV and films but its music player and library work well also.

    -Arr services are used to crawl usenet/bittorrent trackers for different kinds of media.

    I’d imagine the process for this would be you add an album you want to Lidarr, which will then look around for the audio files, use a downloader you point to in order to download it, and then move it into your Jellyfin library.

    Edit: I’ve pointed at Docker repos because I’m a container whore but I believe they all have bare-metal builds also.