Skip Navigation
Looking for a file sharing app

Hello looking for a file sharing app, preferable that I can run in a docker container with a UI that displays for file recipients over a reverse proxy.

edit: thanks everyone for your help and suggestions!

12
Link qBittorent docker container to VPN
  • Do you use docker compose?

    https://www.youtube.com/watch?v=xbSfaKwyfXE&t=33s

    version: '3.7'
    services:
      gluetun:
        image: qmcgaw/gluetun:latest
        container_name: vpn
        cap_add:
          - NET_ADMIN
        ports:
          - '8080:8080'
        environment:
          - VPNSP=protonvpn
          - VPN_TYPE=openvpn
          - OPENVPN_USER=xxxxxx
          - OPENVPN_PASSWORD=xxxxxx
          - REGION=United States
        restart: unless-stopped
      qbittorrent:
        container_name: qbittorrent
        image: cr.hotio.dev/hotio/qbittorrent:latest
        network_mode: 'container:vpn'
        environment:
          - PUID=1000
          - PGID=1000
          - UMASK=002
          - TZ=America/New_York
        volumes:
          - '/home/xxxx/qbt:/config'
          - '/home/xxxx/INCOMING:/downloads'
        restart: unless-stopped
    

    That should get your started

  • Why can I see some of the posts on this community from my instance, but not others?

    Still getting used to the platform, and understand the concepts - obviously if this is just a bug related to the rapid growth, totally understand. Was just curious if I was missing something?

    3
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)40
    401klaser @lemmy.fmhy.ml
    Posts 2
    Comments 11