ExcessShiv

joined 6 months ago
[–] ExcessShiv@lemmy.dbzer0.com 10 points 5 months ago

I'm running my smart home entirely from a single NUC running proxmox with VMs and LXCs for my services. It's pulling ~7W on average

[–] ExcessShiv@lemmy.dbzer0.com 1 points 5 months ago (3 children)

Maybe? Im honestly not quite sure where Pokémon journeys fit in...it has it's own title and season/series numbers, but somehow is also part of and continuing of the original 1997 show it seems.

[–] ExcessShiv@lemmy.dbzer0.com 2 points 5 months ago

If sonarr doesn't find it in the trackers configured in prowlarr, I have a private tracker where I manually search and add torrents to a qbit instance, I just categorize them as "tv-sonarr" and sonarr finds them. But it won't import to media library because it can't identify the show.

[–] ExcessShiv@lemmy.dbzer0.com 2 points 5 months ago (7 children)

I actually do use sonarr, but it can't find the show when searching by name at all, so I resorted to manual importing in JF...but that backfired

[–] ExcessShiv@lemmy.dbzer0.com 6 points 5 months ago (5 children)

Didn't think of that, I will take a look. Pokemon is the only anime I have in my server, and it's only for the kids.

[–] ExcessShiv@lemmy.dbzer0.com 1 points 5 months ago (2 children)

I'm not sure, but you could be right...

But apparently it's considered the 23rd season of the 1997 show, despite having it's own name and season 1/2 naming...IDK, it really annoying that I have to manage these things so manually. The entire point of pirating was that it should be easier, but this is just such a god damn nuisance.

[–] ExcessShiv@lemmy.dbzer0.com 18 points 5 months ago* (last edited 5 months ago) (11 children)

OMFG...i fucking hate anime and their fucked up way of doing seasons.

It doesn't show up when searching for the name though

[–] ExcessShiv@lemmy.dbzer0.com 1 points 5 months ago (4 children)

I've manually set the title and IMDB ID, but the show doesn't exist on tvdb or moviedb for some reason, so I left those two blank. But JF still fetches metadata for the original series despite this.

[–] ExcessShiv@lemmy.dbzer0.com 2 points 5 months ago

No they're in the same compose file, I just left other parts out because it's fairly long for a post.

[–] ExcessShiv@lemmy.dbzer0.com 1 points 5 months ago (1 children)

Actually I'm also not using the default port for any of my qbit instances

[–] ExcessShiv@lemmy.dbzer0.com 1 points 5 months ago

IDK, it's worth a try to rearrange the containers I would say.

[–] ExcessShiv@lemmy.dbzer0.com 3 points 5 months ago (6 children)

Yeah i pretty much stole this from someone else, although it only used a single torrent client so i just added another that looked the same. i'm not very skilled in docker, so some things may not be best practice (or even correct)

qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    network_mode: service:gluetun
    environment:
      - PUID=${APPUSER_PUID}
      - PGID=${APPUSER_PGID}
      - TZ=${TIME_ZONE_VALUE}
      - WEBUI_PORT=8084
    volumes:
      - ${PATH_TO_DATA}/qbit/config:/config
      - ${PATH_TO_COMPLETE}:/downloads
    restart: unless-stopped
    depends_on:
      - gluetun

  qbittorrentTL:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrentTL
    network_mode: service:gluetun
    environment:
      - PUID=${APPUSER_PUID}
      - PGID=${APPUSER_PGID}
      - TZ=${TIME_ZONE_VALUE}
      - WEBUI_PORT=8085
    volumes:
      - ${PATH_TO_DATA}/qbitTL/config:/config
      - ${PATH_TO_COMPLETE}:/downloads
    restart: unless-stopped
    depends_on:
      - gluetun

  gluetun:
    image: qmcgaw/gluetun
    container_name: gluetun
    networks:
      pirate_net:
    cap_add:
      - NET_ADMIN
      - SYS_MODULE
    environment:
      - VPN_SERVICE_PROVIDER=protonvpn
      - OPENVPN_USER=[USER]
      - OPENVPN_PASSWORD=[PASSWORD]
      - SERVER_COUNTRIES=[COUNTRIES]
      - VPN_PORT_FORWARDING=on
      - UPDATER_PERIOD=6h
    ports:
      - 8084:8084 # Qbit
      - 8085:8085 # QbitTL
      - 6881:6881
      - 6881:6881/udp
      - 8191:8191 # Flaresolverr
      - 9696:9696 # Prowlarr
      - 7878:7878 # Radarr
      - 8989:8989 # Sonarr
    volumes:
      - ${PATH_TO_DATA}/gluetun/config:/config

networks:
  pirate_net:
    driver: bridge
view more: ‹ prev next ›