Formerly /u/neoKushan on reddit

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

help-circle














  • If you’re trying to build it all from scratch, sure, but you specifically mentioned docker and there’s plenty of high-quality docker images you can use - and it’s no harder to use a qBittorrent docker image than a transmission docker image.

    Here’s the docker command for transmission:

    docker run -d \
      --name=transmission \
      -e PUID=1000 \
      -e PGID=1000 \
      -e TZ=Etc/UTC \
      -e TRANSMISSION_WEB_HOME= `#optional` \
      -e USER= `#optional` \
      -e PASS= `#optional` \
      -e WHITELIST= `#optional` \
      -e PEERPORT= `#optional` \
      -e HOST_WHITELIST= `#optional` \
      -p 9091:9091 \
      -p 51413:51413 \
      -p 51413:51413/udp \
      -v /path/to/data:/config \
      -v /path/to/downloads:/downloads \
      -v /path/to/watch/folder:/watch \
      --restart unless-stopped \
      lscr.io/linuxserver/transmission:latest
    

    and the equivelant for qBitTorrent:

    docker run -d \
      --name=qbittorrent \
      -e PUID=1000 \
      -e PGID=1000 \
      -e TZ=Etc/UTC \
      -e WEBUI_PORT=8080 \
      -p 8080:8080 \
      -p 6881:6881 \
      -p 6881:6881/udp \
      -v /path/to/appdata/config:/config \
      -v /path/to/downloads:/downloads \
      --restart unless-stopped \
      lscr.io/linuxserver/qbittorrent:latest
    

    I’m not even going to argue that the qBitTorrent docker image is technically easier as it has less to configure, it’s all one command at the end of the day.





  • I understand your reasoning for not setting up the other *arr apps, due to not having a dedicated server to run them, however you’d still benefit from running them on your PC. They handle the downloading, extraction, categorising and naming of the media you want and they can do that automatically.

    Even on your computer, that’ll save you time and effort, you can just tell it what shows you want - even shows that aren’t out yet and it’ll grab them for you whenever they appear. It’s great for when you enjoy a show and the next season starts, it just grabs it for you and the show appears one day.

    A lot of people start this way and it’s only then they think about getting a dedicated device for it - such a device can be a decent little Synology or QNAP NAS, something small, quiet and power efficient but I’d definitely say you don’t need to start there. It’s worth the effort to try though, believe me.