• 0 Posts
  • 23 Comments
Joined 7 months ago
cake
Cake day: April 23rd, 2024

help-circle
  • Yeah it’s pretty crazy…prices vary by the hour, and that was only the single most expensive hour in that period though, and it was way above normal. Normally it peaks around 0.35USD/kWh with normal daytime prices around 0.2USD/kWh and nighttime prices around 0.1USD/kWh.

    My total electricity consumption in the 5-9pm period is only around 2kWh though, so despite high prices it’s not much money.











  • ExcessShiv@lemmy.dbzer0.comOPtoSelfhosted@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    3 months ago

    I’ve used mullvad but that can’t punch through either no matter what. Unfortunately I don’t have enough mobile data abroad to fuel my streaming needs for the entire duration of my trip.

    I’ll talk to the reception when I get back to the hotel I guess…it’s really frustrating and I hate using hotel WiFi without a VPN.










  • 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