Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

GreenCloud | #1 TOP PROVIDER 2024 SALE | DOUBLE PROMOTIONS with GENOA/9950x | +$2000 GIVEAWAYS

1259260262264265810

Comments

  • emghemgh Member, Megathread Squad

    this is nice btw

    the one UI I can actually accept

    Thanked by 3Svalbard Blembim admax
  • @cainyxues said:

    @Blembim said:

    @Decicus said:
    I need to update my own wiki since it's still referring to qBitTorrent v4.6.7, but this is effectively what I run:

    services:
        vpn:
            container_name: wireguard
            image: jordanpotter/wireguard
            cap_add:
                - NET_ADMIN
                - SYS_MODULE
            sysctls:
                net.ipv4.conf.all.src_valid_mark: 1
                net.ipv6.conf.all.disable_ipv6: 0
            volumes:
                ### I use AirVPN, so first I have a "device": https://airvpn.org/devices/
                ### Then I make sure to open a port (with P2P support) via: https://airvpn.org/ports/
                ### For that generated port, I choose the device I created earlier.
    
                ### The WireGuard config is then generated via https://airvpn.org/generator/
                ### Select one of the servers closest to where you're hosting your qBitTorrent setup
                ### Download the .conf file, rename it to vpn.conf and put it in the same folder as the docker-compose.yml file.
                - ./vpn.conf:/etc/wireguard/vpn.conf
            ports:
                ### I run NGINX on the host server for a reverse proxy.
                ### The secondary `8080` matches the `WEBUI_PORT` on the qBitTorrent container configuration below.
                - "127.0.0.1:8888:8080"
            restart: unless-stopped
    
        ### As of October 2024, qBitTorrent just released v5.0.0, but most trackers don't support this yet.
        ### Therefore the container below is sticking to v4.6.7.
        ### Make sure that your tracker supports v5.0.0 before updating to it!
        ### Personally I'd hold off on updating until v5.0.1, v5.0.2 or any other v5.x.x, until it has been out for a good month or so, to weed out most of the issues
        qbittorrent:
            container_name: qbittorrent
            image: ghcr.io/linuxserver/qbittorrent:4.6.7
            restart: unless-stopped
            depends_on:
                - vpn
            network_mode: "service:vpn"
            volumes:
                ### This holds the qBitTorrent configuration. If you want, you could rely on Docker volumes instead. I prefer have it all in the same directory as my Docker Compose yml files.
                - ./config:/config
                ### /data is where I point my downloads towards, you might use /mnt - or something else. Up to you!
                - /data:/data
            environment:
                ### For permissions, you might have to adjust this depending on your user or group ID in Linux.
                ### You can use `id your-username-here` on the server/system you're running Docker to figure out what user ID (uid) and group ID (gid) you wanna use.
                # - PUID=112
                # - PGID=114
                ### Depending on where you live, you might want to change the line below. Europe/Oslo should work for anyone in Central European Time though :)
                - TZ=Europe/Oslo
                - WEBUI_PORT=8080
    

    Thx u, now i can safely torrent anime linux isos

    BTW why doo you guys need to store linux iso's like its available online you can watch there :smile: is there something I am missing here?

    These are 4K ISOs.

  • emghemgh Member, Megathread Squad

    also using a local fucking TZ instead of UTC

    fuck you twice

  • @emgh said:
    also using a local fucking TZ instead of UTC

    fuck you twice

    calm down grandma.

  • emghemgh Member, Megathread Squad

    @barbaros said:

    @emgh said:
    also using a local fucking TZ instead of UTC

    fuck you twice

    calm down grandma.

    cock

  • @barbaros said:

    @cainyxues said:

    @Blembim said:

    @Decicus said:
    I need to update my own wiki since it's still referring to qBitTorrent v4.6.7, but this is effectively what I run:

    services:
        vpn:
            container_name: wireguard
            image: jordanpotter/wireguard
            cap_add:
                - NET_ADMIN
                - SYS_MODULE
            sysctls:
                net.ipv4.conf.all.src_valid_mark: 1
                net.ipv6.conf.all.disable_ipv6: 0
            volumes:
                ### I use AirVPN, so first I have a "device": https://airvpn.org/devices/
                ### Then I make sure to open a port (with P2P support) via: https://airvpn.org/ports/
                ### For that generated port, I choose the device I created earlier.
    
                ### The WireGuard config is then generated via https://airvpn.org/generator/
                ### Select one of the servers closest to where you're hosting your qBitTorrent setup
                ### Download the .conf file, rename it to vpn.conf and put it in the same folder as the docker-compose.yml file.
                - ./vpn.conf:/etc/wireguard/vpn.conf
            ports:
                ### I run NGINX on the host server for a reverse proxy.
                ### The secondary `8080` matches the `WEBUI_PORT` on the qBitTorrent container configuration below.
                - "127.0.0.1:8888:8080"
            restart: unless-stopped
    
        ### As of October 2024, qBitTorrent just released v5.0.0, but most trackers don't support this yet.
        ### Therefore the container below is sticking to v4.6.7.
        ### Make sure that your tracker supports v5.0.0 before updating to it!
        ### Personally I'd hold off on updating until v5.0.1, v5.0.2 or any other v5.x.x, until it has been out for a good month or so, to weed out most of the issues
        qbittorrent:
            container_name: qbittorrent
            image: ghcr.io/linuxserver/qbittorrent:4.6.7
            restart: unless-stopped
            depends_on:
                - vpn
            network_mode: "service:vpn"
            volumes:
                ### This holds the qBitTorrent configuration. If you want, you could rely on Docker volumes instead. I prefer have it all in the same directory as my Docker Compose yml files.
                - ./config:/config
                ### /data is where I point my downloads towards, you might use /mnt - or something else. Up to you!
                - /data:/data
            environment:
                ### For permissions, you might have to adjust this depending on your user or group ID in Linux.
                ### You can use `id your-username-here` on the server/system you're running Docker to figure out what user ID (uid) and group ID (gid) you wanna use.
                # - PUID=112
                # - PGID=114
                ### Depending on where you live, you might want to change the line below. Europe/Oslo should work for anyone in Central European Time though :)
                - TZ=Europe/Oslo
                - WEBUI_PORT=8080
    

    Thx u, now i can safely torrent anime linux isos

    BTW why doo you guys need to store linux iso's like its available online you can watch there :smile: is there something I am missing here?

    These are 4K ISOs.

    you really need 4k? upto 22 inch it makes no sense maybe after that ok :+1: and you would still be able to stream that...............

    Thanked by 1Blembim
  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @emgh said:
    also using a local fucking TZ instead of UTC

    fuck you twice

    how else am i supposed tot ell when the errors occured

  • emghemgh Member, Megathread Squad

    the one thing I like is volumes as full paths and not as docker volume names

  • beanman109beanman109 Member, Host Rep, Megathread Squad

    emgh is easier to ragebait than crypto idiots

  • @cainyxues said:

    @barbaros said:

    @cainyxues said:

    @Blembim said:

    @Decicus said:
    I need to update my own wiki since it's still referring to qBitTorrent v4.6.7, but this is effectively what I run:

    services:
        vpn:
            container_name: wireguard
            image: jordanpotter/wireguard
            cap_add:
                - NET_ADMIN
                - SYS_MODULE
            sysctls:
                net.ipv4.conf.all.src_valid_mark: 1
                net.ipv6.conf.all.disable_ipv6: 0
            volumes:
                ### I use AirVPN, so first I have a "device": https://airvpn.org/devices/
                ### Then I make sure to open a port (with P2P support) via: https://airvpn.org/ports/
                ### For that generated port, I choose the device I created earlier.
    
                ### The WireGuard config is then generated via https://airvpn.org/generator/
                ### Select one of the servers closest to where you're hosting your qBitTorrent setup
                ### Download the .conf file, rename it to vpn.conf and put it in the same folder as the docker-compose.yml file.
                - ./vpn.conf:/etc/wireguard/vpn.conf
            ports:
                ### I run NGINX on the host server for a reverse proxy.
                ### The secondary `8080` matches the `WEBUI_PORT` on the qBitTorrent container configuration below.
                - "127.0.0.1:8888:8080"
            restart: unless-stopped
    
        ### As of October 2024, qBitTorrent just released v5.0.0, but most trackers don't support this yet.
        ### Therefore the container below is sticking to v4.6.7.
        ### Make sure that your tracker supports v5.0.0 before updating to it!
        ### Personally I'd hold off on updating until v5.0.1, v5.0.2 or any other v5.x.x, until it has been out for a good month or so, to weed out most of the issues
        qbittorrent:
            container_name: qbittorrent
            image: ghcr.io/linuxserver/qbittorrent:4.6.7
            restart: unless-stopped
            depends_on:
                - vpn
            network_mode: "service:vpn"
            volumes:
                ### This holds the qBitTorrent configuration. If you want, you could rely on Docker volumes instead. I prefer have it all in the same directory as my Docker Compose yml files.
                - ./config:/config
                ### /data is where I point my downloads towards, you might use /mnt - or something else. Up to you!
                - /data:/data
            environment:
                ### For permissions, you might have to adjust this depending on your user or group ID in Linux.
                ### You can use `id your-username-here` on the server/system you're running Docker to figure out what user ID (uid) and group ID (gid) you wanna use.
                # - PUID=112
                # - PGID=114
                ### Depending on where you live, you might want to change the line below. Europe/Oslo should work for anyone in Central European Time though :)
                - TZ=Europe/Oslo
                - WEBUI_PORT=8080
    

    Thx u, now i can safely torrent anime linux isos

    BTW why doo you guys need to store linux iso's like its available online you can watch there :smile: is there something I am missing here?

    These are 4K ISOs.

    you really need 4k? upto 22 inch it makes no sense maybe after that ok :+1: and you would still be able to stream that...............

    My next plan is buying 75" Oled to watch from 1 meter distance, so...

    Thanked by 1cainyxues
  • emghemgh Member, Megathread Squad

    @beanman109 said:
    emgh is easier to ragebait than crypto idiots

    bitcoin solves this btw

  • @emgh

    DOCKER MASTERCLASS WEN?

    Thanked by 1emgh
  • plumbergplumberg Veteran, Megathread Squad

    @beanman109 said:

    @emgh said:
    also using a local fucking TZ instead of UTC

    fuck you twice

    how else am i supposed tot ell when the errors occured

    With the new uptime host you signing up for doesn't matter what error happens when

    Thanked by 1beanman109
  • @barbaros said:

    @cainyxues said:

    @barbaros said:

    @cainyxues said:

    @Blembim said:

    @Decicus said:
    I need to update my own wiki since it's still referring to qBitTorrent v4.6.7, but this is effectively what I run:

    services:
        vpn:
            container_name: wireguard
            image: jordanpotter/wireguard
            cap_add:
                - NET_ADMIN
                - SYS_MODULE
            sysctls:
                net.ipv4.conf.all.src_valid_mark: 1
                net.ipv6.conf.all.disable_ipv6: 0
            volumes:
                ### I use AirVPN, so first I have a "device": https://airvpn.org/devices/
                ### Then I make sure to open a port (with P2P support) via: https://airvpn.org/ports/
                ### For that generated port, I choose the device I created earlier.
    
                ### The WireGuard config is then generated via https://airvpn.org/generator/
                ### Select one of the servers closest to where you're hosting your qBitTorrent setup
                ### Download the .conf file, rename it to vpn.conf and put it in the same folder as the docker-compose.yml file.
                - ./vpn.conf:/etc/wireguard/vpn.conf
            ports:
                ### I run NGINX on the host server for a reverse proxy.
                ### The secondary `8080` matches the `WEBUI_PORT` on the qBitTorrent container configuration below.
                - "127.0.0.1:8888:8080"
            restart: unless-stopped
    
        ### As of October 2024, qBitTorrent just released v5.0.0, but most trackers don't support this yet.
        ### Therefore the container below is sticking to v4.6.7.
        ### Make sure that your tracker supports v5.0.0 before updating to it!
        ### Personally I'd hold off on updating until v5.0.1, v5.0.2 or any other v5.x.x, until it has been out for a good month or so, to weed out most of the issues
        qbittorrent:
            container_name: qbittorrent
            image: ghcr.io/linuxserver/qbittorrent:4.6.7
            restart: unless-stopped
            depends_on:
                - vpn
            network_mode: "service:vpn"
            volumes:
                ### This holds the qBitTorrent configuration. If you want, you could rely on Docker volumes instead. I prefer have it all in the same directory as my Docker Compose yml files.
                - ./config:/config
                ### /data is where I point my downloads towards, you might use /mnt - or something else. Up to you!
                - /data:/data
            environment:
                ### For permissions, you might have to adjust this depending on your user or group ID in Linux.
                ### You can use `id your-username-here` on the server/system you're running Docker to figure out what user ID (uid) and group ID (gid) you wanna use.
                # - PUID=112
                # - PGID=114
                ### Depending on where you live, you might want to change the line below. Europe/Oslo should work for anyone in Central European Time though :)
                - TZ=Europe/Oslo
                - WEBUI_PORT=8080
    

    Thx u, now i can safely torrent anime linux isos

    BTW why doo you guys need to store linux iso's like its available online you can watch there :smile: is there something I am missing here?

    These are 4K ISOs.

    you really need 4k? upto 22 inch it makes no sense maybe after that ok :+1: and you would still be able to stream that...............

    My next plan is buying 75" Oled to watch from 1 meter distance, so...

    I mean ok then :lol: :+1:

    Thanked by 1barbaros
  • emghemgh Member, Megathread Squad

    @cainyxues said:
    @emgh

    DOCKER MASTERCLASS WEN?

    I might. I love Docker.

    I even abuse GitHub and Docker Hub to perfection. GitHub builds everything on push, and DockerHub stores everything with basically no limits because I use tags as if there were repos, bypassing the 1 free private repo.

  • @emgh said:
    the one thing I like is volumes as full paths and not as docker volume names

    Try importing docker compose yaml to Portainer. It fucks up with the file paths and changes to it's own.

    Thanked by 2emgh Blembim
  • emghemgh Member, Megathread Squad

    @barbaros said: Try importing docker compose yaml to Portainer

    I won't

    Thanked by 2barbaros Blembim
  • beanman109beanman109 Member, Host Rep, Megathread Squad
    edited February 2025

    forgot the most important part
    sysctls:
    - net.ipv6.conf.all.disable_ipv6=1

  • @emgh said:

    @cainyxues said:
    @emgh

    DOCKER MASTERCLASS WEN?

    I might. I love Docker.

    I even abuse GitHub and Docker Hub to perfection. GitHub builds everything on push, and DockerHub stores everything with basically no limits because I use tags as if there were repos, bypassing the 1 free private repo.

    So, can you share a good docker compose for: caddy + php8-fpm + mariadb?

    Thanks

    Thanked by 2cainyxues emgh
  • good luck

  • @beanman109 said:
    forgot the most important part
    sysctls:
    - net.ipv6.conf.all.disable_ipv6=1

  • @beanman109 said:
    forgot the most important part
    sysctls:
    - net.ipv6.conf.all.disable_ipv6=1

    Nooooooooooooooooohhhhhhhhhhhhhhhhhhhh.

    @yoursunny someone needs your help.

    Thanked by 1Blembim
  • emghemgh Member, Megathread Squad

    @barbaros said:

    @emgh said:

    @cainyxues said:
    @emgh

    DOCKER MASTERCLASS WEN?

    I might. I love Docker.

    I even abuse GitHub and Docker Hub to perfection. GitHub builds everything on push, and DockerHub stores everything with basically no limits because I use tags as if there were repos, bypassing the 1 free private repo.

    So, can you share a good docker compose for: caddy + php8-fpm + mariadb?

    Thanks

    just find for each and then copy pate together, at least for the first and last I think there's official containers, maybe also for php I can't remembur

    Thanked by 3cainyxues admax Blembim
  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @barbaros said:

    @beanman109 said:
    forgot the most important part
    sysctls:
    - net.ipv6.conf.all.disable_ipv6=1

    Thanked by 2admax Blembim
  • REGUARDSSSS

  • @emgh said:

    @barbaros said:

    @emgh said:

    @cainyxues said:
    @emgh

    DOCKER MASTERCLASS WEN?

    I might. I love Docker.

    I even abuse GitHub and Docker Hub to perfection. GitHub builds everything on push, and DockerHub stores everything with basically no limits because I use tags as if there were repos, bypassing the 1 free private repo.

    So, can you share a good docker compose for: caddy + php8-fpm + mariadb?

    Thanks

    just find for each and then copy pate together, at least for the first and last I think there's official containers, maybe also for php I can't remembur

    Sounds like you don't love Docker good enough.

  • beanman109beanman109 Member, Host Rep, Megathread Squad

    @barbaros said:

    @emgh said:

    @cainyxues said:
    @emgh

    DOCKER MASTERCLASS WEN?

    I might. I love Docker.

    I even abuse GitHub and Docker Hub to perfection. GitHub builds everything on push, and DockerHub stores everything with basically no limits because I use tags as if there were repos, bypassing the 1 free private repo.

    So, can you share a good docker compose for: caddy + php8-fpm + mariadb?

    Thanks

    here

    Thanked by 3emgh barbaros cainyxues
  • And the winner is ...

  • emghemgh Member, Megathread Squad

    @NDTN you have warmed up for an hour now

  • @barbaros said:

    @beanman109 said:
    forgot the most important part
    sysctls:
    - net.ipv6.conf.all.disable_ipv6=1

    I don't quite know how to read cats - are those tears of joy or sadness?

    Asking for @yoursunny

    Thanked by 2beanman109 cainyxues
Sign In or Register to comment.