this post was submitted on 16 Mar 2025
75 points (100.0% liked)

Selfhosted

44780 readers
461 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
top 50 comments
sorted by: hot top controversial new old
[–] watson387@sopuli.xyz 16 points 6 days ago* (last edited 6 days ago) (1 children)
[–] flightyhobler@lemm.ee 1 points 6 days ago (1 children)

Goodbye stopped containers.

[–] Jolteon@lemmy.zip 2 points 5 days ago (1 children)

IIRC, a normal prune doesn't get rid of those, only the --all prune does that. The normal one only erases images that aren't associated with any container.

[–] watson387@sopuli.xyz 1 points 3 days ago* (last edited 3 days ago)

docker container prune for containers only also.

[–] tekeous@usenet.lol 3 points 6 days ago

bro downloaded the mudroom closet and has a whole stack of jacketts

[–] BlackEco@lemmy.blackeco.com 4 points 6 days ago (1 children)

I believe Linux Server builds images every day for most of their containers, even though there has been no code changes.

[–] bjorney@lemmy.ca 20 points 6 days ago

If the code doesn't change, the resulting docker image will have the same hash, and a new image won't be created

https://github.com/jackett/jackett/releases

Jackett is literally just releasing a new version every day

[–] Wooki@lemmy.world 2 points 6 days ago

Laughs in nix

[–] Xanza@lemm.ee 2 points 6 days ago

Do you have Kinsing? I just dealt with it this past week.

[–] smiletolerantly@awful.systems 42 points 1 week ago (2 children)

Real question is, why Jackett instead of Prowlarr? 😄

[–] couch1potato@lemmy.dbzer0.com 1 points 4 days ago

If i remember correctly, jackett allows you to add trackers that prowlarr doesn't have natively. Then you add jackett to prowlarr to distribute to the rest of your containers.

[–] flightyhobler@lemm.ee 16 points 1 week ago (2 children)

Dunno, man. Its been working so far. I'll check out prowlarr, thanks

[–] itsnotits@lemmy.world 4 points 6 days ago

It's* been working

[–] smiletolerantly@awful.systems 11 points 1 week ago (2 children)

Yeah no worries - I discovered Prowlarr from that exact same comment years ago so jumped at the opportunity to post it here 😆

[–] flightyhobler@lemm.ee 2 points 5 days ago (1 children)

Prowlarr's "guide" for docker implementation is scary

[–] smiletolerantly@awful.systems 1 points 5 days ago (1 children)
[–] flightyhobler@lemm.ee 1 points 5 days ago* (last edited 5 days ago) (1 children)

Nah, man. Check this out: https://prowlarr.com/#downloads-v3-other

Neither option makes me feel confident.

[–] smiletolerantly@awful.systems 1 points 5 days ago (2 children)

I am a bit confused tbh 😅

The link you send links to docker projects, the link I sent is the second one of those. Seems pretty straightforward?

But to be fair, I have never used docker for any of this. In my nix config, it's literally just:

    services.prowlarr.enable = true;
    services.prowlarr.openFirewall = true;

There's not really anything you need to configure host-side. Prowlarr needs to be able to communicate with sonarr and radarr (same as jackett), but otherwise it's basically stateless.

[–] flightyhobler@lemm.ee 2 points 5 days ago

You might be right. Last time I checked I was still a bit "green" with this. It's been two years and I think it makes more sense now 😉

[–] flightyhobler@lemm.ee 1 points 5 days ago

The main issue is that for the prowler developers it seems like none of the docker options is ideal....

[–] flightyhobler@lemm.ee 13 points 1 week ago (16 children)

Tbh the whole arr suite is a headache to get working well...

[–] Shimitar@downonthestreet.eu 2 points 6 days ago

Never had an issue. But I installed them all using my distro package manager, so no hassle with volumes and links.

[–] yoshman@lemmy.world 2 points 6 days ago* (last edited 6 days ago) (1 children)

I have them all running in a docker compose, that also has gluetun as the gateway.

It's a real basic compse file, but I can share it if you like.

[–] flightyhobler@lemm.ee 2 points 6 days ago (2 children)

Sure, why not? I'm setting up my new server, so no better time. Thanks

[–] yoshman@lemmy.world 3 points 6 days ago* (last edited 6 days ago)
services:
  gluetun:
    image: qmcgaw/gluetun
    container_name: gluetun
    cap_add:
      - NET_ADMIN
    environment:
      - DNS_ADDRESS=
      - PUID=1000
      - PGID=1000
      - SERVER_CITIES=
      - FIREWALL_VPN_INPUT_PORTS=
      - TZ=Etc/UTC
      # Provider readmes: https://github.com/qdm12/gluetun-wiki/tree/main/setup/providers
      - VPN_SERVICE_PROVIDER=
      #- VPN_TYPE=openvpn
      #- OPENVPN_CUSTOM_CONFIG=/config/custom.conf
      #- VPN_TYPE=wireguard
      #- WIREGUARD_PRIVATE_KEY=
      #- WIREGUARD_ADDRESSES=
    ports:
      - 6767:6767       # bazaar
      - 7878:7878       # radaar
      - 8118:8118       # privoxy
      - 8191:8191       # flaresolverr
      - 8787:8787       # readaar
      - 8989:8989       # sonaar
      - 9091:9091       # transmission
      - 9696:9696       # prowlarr
      # You can add an forwarded listening ports your VPN provider might have here as well.
    volumes:
      - /data/gluetun:/config
  bazarr:
    image: lscr.io/linuxserver/bazarr:latest
    container_name: bazarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /data/bazarr:/config
      - /share/downloads/movies:/share/downloads/movies
      - /share/downloads/tv:/share/downloads/tv
    restart: unless-stopped
    network_mode: service:gluetun
  flaresolverr:
    # DockerHub mirror flaresolverr/flaresolverr:latest
    image: ghcr.io/flaresolverr/flaresolverr:latest
    container_name: flaresolverr
    environment:
      - LOG_LEVEL=info
      - LOG_HTML=false
      - CAPTCHA_SOLVER=none
      - TZ=Etc/UTC
    restart: unless-stopped
    network_mode: service:gluetun
  privoxy:
    image: caligari/privoxy:latest
    container_name: privoxy
    restart: unless-stopped
    network_mode: service:gluetun
  prowlarr:
    image: lscr.io/linuxserver/prowlarr:latest
    container_name: prowlarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /data/prowlarr:/config
    restart: unless-stopped
    network_mode: service:gluetun
  radarr:
    image: lscr.io/linuxserver/radarr:latest
    container_name: radarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /data/radarr:/config
      - /share/downloads/movies:/share/downloads/movies
    restart: unless-stopped
    network_mode: service:gluetun
  readarr:
    image: lscr.io/linuxserver/readarr:develop
    container_name: readarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /data/readarr:/config
      - /share/downloads/books:/share/downloads/books
    restart: unless-stopped
    network_mode: service:gluetun
  sonarr:
    image: lscr.io/linuxserver/sonarr:latest
    container_name: sonarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /data/sonarr:/config
      - /share/downloads/tv:/share/downloads/tv
    restart: unless-stopped
    network_mode: service:gluetun
  transmission:
    image: lscr.io/linuxserver/transmission:latest
    container_name: transmission
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      - TRANSMISSION_WEB_HOME= #optional
      - USER= #optional
      - PASS= #optional
      - WHITELIST= #optional
      - PEERPORT= #optional
      - HOST_WHITELIST= #optional
    volumes:
      - /data/transmission:/config
      - /share/downloads/movies:/share/downloads/movies
      - /share/downloads/books:/share/downloads/books
      - /share/downloads/tv:/share/downloads/tv
    restart: unless-stopped
    network_mode: service:gluetun
  watchtower:
    container_name: watchtower
    image: containrrr/watchtower
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    network_mode: service:gluetun
[–] ikidd@lemmy.world 3 points 6 days ago* (last edited 6 days ago)

You might also want to check out https://yams.media/, it's pretty much an install script and configuration walkthrough that's very complete and detailed. Includes most relevant Arrs and gluetun builtin. Containerized. Choice of Emby, Plex or Jellyfin.

[–] roofuskit@lemmy.world 2 points 6 days ago (2 children)

Prowlarr, recyclarr, and trash guides.

[–] raldone01@lemmy.world 2 points 6 days ago* (last edited 10 hours ago)

I tried recyclearr but found configarr to be more flexible.

https://github.com/raydak-labs/configarr/

Here is my configarr config:https://github.com/raldone01/configarr_config

I believe configarr is just a superset of recyclearr.

[–] flightyhobler@lemm.ee 1 points 6 days ago

it's those pesky docker volume maps and hardlinks

[–] Atherel@lemmy.dbzer0.com 1 points 6 days ago (1 children)
[–] Comtief@lemm.ee 3 points 6 days ago

I'm not the OP, but it's a headache even with trash guides

[–] River_Tahm@lemmy.today 1 points 6 days ago

What’s not working for you?

For me after a decade using -arr the only thing I’ve had significant issues with has been trying to use the Tailscale integration on Unraid 7 to tunnel the dockers through an exit node which is… not at all the fault of -arr containers lol

[–] Alk@sh.itjust.works 1 points 6 days ago

I've had the opposite experience. It all "just worked". Try running unraid. It makes a lot of it so much easier.

load more comments (9 replies)
[–] umami_wasbi@lemmy.ml 20 points 1 week ago* (last edited 1 week ago) (4 children)

Looking at linuxserver/jackett on Docker Hub, it seems it indeed update everyday.

load more comments (4 replies)
[–] jay@mbin.zerojay.com:443 15 points 1 week ago (1 children)

Because you are pulling it every day.

[–] Lulzagna@lemmy.world 12 points 6 days ago* (last edited 6 days ago) (1 children)

Images only download when there's a new release, so you didn't answer the question.

The answer is: Because Jackett has daily releases. Maybe they don't version their releases.

[–] jay@mbin.zerojay.com:443 3 points 6 days ago (1 children)

Sure, but also, why are you pulling daily to begin with?

[–] Lulzagna@lemmy.world 6 points 6 days ago (1 children)

Because it's an automated system which looks for updates daily. Is that a serious question?

[–] jay@mbin.zerojay.com:443 4 points 6 days ago (1 children)

Yes, it's a serious question. Pulling far too often is exactly why Docker Hub is implementing lower daily limits.

[–] Lulzagna@lemmy.world 6 points 6 days ago

You're suggesting that a single daily image pull is somehow abusive and the cause for Docker Hub imposing limits. This argument is invalid because even after Docker Hub imposes it's limits, pulling an image daily is well within those limits.

However, I am of the opinion that Portainer shouldn't be downloading images unless the container is being deployed, if that's actually what's happening, we don't know.

OP is doing nothing wrong, so please refrain from making illogical bad faith arguments.

[–] LodeMike@lemmy.today 11 points 1 week ago* (last edited 1 week ago) (1 children)

Presumably because it updates daily

load more comments (1 replies)
load more comments