I have been trying to set up everything over on docker and have came across an issue where large file sizes (4K tv episodes etc) fail to download at all where 1080 (small sizes around 1 gb download just fine to same location).
Edit: an almost 8 gb season can download just fine but a 4.35 file will not and the 3.8 GB one will work (same TV show and name besides EP number)

I just pulled new image to attempt to fix but did not work. I found this but it tells me nothing or I think nothing.

Error message from logs:
(/downloads/Constellation.S01E02.HDR.2160p.WEB.H265-SuccessfulCrab[TGx]/constellation.s01e02.hdr.2160p.web.h265-successfulcrab.mkv) error: File too large"

file size for above are 9-10gb

compose file

services:
  gluetun:
    image: qmcgaw/gluetun
    cap_add:
      - NET_ADMIN
    environment:
      - VPN_SERVICE_PROVIDER=
      - VPN_TYPE=
      - WIREGUARD_PRIVATE_KEY=
      - WIREGUARD_ADDRESSES=
      - VPN_ENDPOINT_PORT=443
      - WIREGUARD_PRESHARED_KEY= 
      - SERVER_REGIONS= 
    ports:
      - 8080:8080
      - 9696:9696
      - 8989:8989
      - 7878:7878
      - 6881:6881
      - 6881:6881/udp
    restart: always
    
    
  qbittorrent:
    container_name: qbittorrent
    image: lscr.io/linuxserver/qbittorrent:latest
    network_mode: "service:gluetun"
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      - WEBUI_PORT=8080
    volumes:
      - /home/blxter/server/qbittorrent/config:/config
      - /media/blxter/download:/downloads
    restart: unless-stopped
    depends_on:
      gluetun:
        condition: service_healthy