Maybe transmission was okay after all

This commit is contained in:
Neale Pickett 2022-10-13 14:38:46 -06:00
parent da04d25864
commit c81badd9a3
3 changed files with 34 additions and 16 deletions

View File

@ -68,6 +68,10 @@ deergrove.woozle.org, sweetums.woozle.org {
import restricted-access import restricted-access
reverse_proxy readarr:8787 reverse_proxy readarr:8787
} }
handle /lidarr/* {
import restricted-access
reverse_proxy lidarr:8686
}
handle /prowlarr/* { handle /prowlarr/* {
import restricted-access import restricted-access
reverse_proxy prowlarr:9696 reverse_proxy prowlarr:9696

View File

@ -53,17 +53,15 @@ services:
bind: bind:
propagation: rslave propagation: rslave
qbittorrent: transmission:
image: lscr.io/linuxserver/qbittorrent image: lscr.io/linuxserver/transmission
volumes: volumes:
- type: bind - type: bind
source: /srv/ext/sys/qbittorrent source: /srv/ext/sys/transmission
target: /config target: /config
- type: bind - type: bind
source: /srv/ext/incoming source: /srv/ext/incoming
target: /srv/ext/incoming target: /srv/ext/incoming
environment:
HOST_PORT: 6680
networks: networks:
- hostnet - hostnet
@ -91,6 +89,18 @@ services:
- type: bind - type: bind
source: /srv/ext/incoming source: /srv/ext/incoming
target: /srv/ext/incoming target: /srv/ext/incoming
lidarr:
image: lscr.io/linuxserver/lidarr
volumes:
- type: bind
source: /srv/ext/sys/lidarr
target: /config
- type: bind
source: /srv/ext/media/music
target: /srv/ext/media/music
- type: bind
source: /srv/ext/incoming
target: /srv/ext/incoming
readarr: readarr:
image: lscr.io/linuxserver/readarr:develop image: lscr.io/linuxserver/readarr:develop
volumes: volumes:
@ -209,10 +219,10 @@ configs:
name: dave.yaml-v3 name: dave.yaml-v3
Caddyfile: Caddyfile:
file: Caddyfile file: Caddyfile
name: Caddyfile-v53 name: Caddyfile-v55
index.html: index.html:
file: index.html file: index.html
name: index.html-v28 name: index.html-v30
secrets: secrets:

View File

@ -44,13 +44,14 @@ li {
<li><a href="/sucker/">💿 Media Sucker: DVD/CD ripper</a></li> <li><a href="/sucker/">💿 Media Sucker: DVD/CD ripper</a></li>
<li><a href="/sonarr/">📺 Sonarr: TV episode manager</a></li> <li><a href="/sonarr/">📺 Sonarr: TV episode manager</a></li>
<li><a href="/radarr/">🎬 Radarr: Movie manager</a></li> <li><a href="/radarr/">🎬 Radarr: Movie manager</a></li>
<li><a href="/lidarr/">🎶 Lidarr: Music manager</a></li>
<li><a href="/readarr/">📖 Readarr: Book manager</a></li> <li><a href="/readarr/">📖 Readarr: Book manager</a></li>
</ul> </ul>
<h2>Media Helpers</h2> <h2>Media Helpers</h2>
<ul> <ul>
<li><a href="/jackett/">🧥 Jackett: Tracker RSS proxy</a></li> <li><a href="/prowlarr/">🐯 Prowlarr: Indexer for downloaders</a></li>
<li><a href="/qbittorrent/">📥 qBittorrent</a></li> <li><a href="/transmission/">📥 Transmission</a></li>
<li><a href="/nzbget/">📰 NZBGet: Usenet fetcher</a></li> <li><a href="/nzbget/">📰 NZBGet: Usenet fetcher</a></li>
</ul> </ul>
</menu> </menu>
@ -63,7 +64,11 @@ li {
and lets everybody watch it whetever. and lets everybody watch it whetever.
</p> </p>
<p> <p>
Sonarr lets you tell it what you'd like to have, The Media Sucker automatically sucks things off of CDs and DVDs.
You still have to rename the files and move them into the right place, though.
</p>
<p>
Sonarr/Radarr/Lidarr/Readarr let you tell it what you'd like to have,
and watches various feeds, and watches various feeds,
waiting for it to appear. waiting for it to appear.
Then it tells a downloader to download it. Then it tells a downloader to download it.
@ -72,18 +77,17 @@ li {
making sure it's named properly. making sure it's named properly.
</p> </p>
<p> <p>
Jackett is a feed provider, Prowlarr connects to various download indexers,
which searches torrent sites and provides the results as feeds. to find whatever it is you're looking for.
<a href="https://nzbgeek.info/">NZBGeek</a> is a paid feed provider that I use: <a href="https://nzbgeek.info/">NZBGeek</a> is a paid feed provider that I use:
it monitors usenet for new posts, it monitors Usenet for new posts,
and provides them as feeds. and provides them as feeds.
Usenet is a very old distributed bulletin board: it even predates the World Wide Web.
I pay <a href="https://frugalusenet.com/">Frugal Usenet</a> $5 a month to run a Usenet server so I don't have to. I pay <a href="https://frugalusenet.com/">Frugal Usenet</a> $5 a month to run a Usenet server so I don't have to.
</p> </p>
<p> <p>
Transmission and NZBGet are downloaders. Transmission and NZBGet are downloaders.
They pull files down from bit torrent (Transmission) Once you've found something in an index,
and Usenet (NZBGet). you can ask these to download it.
</p> </p>
</section> </section>
</body> </body>