this post was submitted on 30 Oct 2025
50 points (94.6% liked)

Selfhosted

52632 readers
769 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

Occasionally I see people mention gluetun.

  • What's gluetun? Seems like it's a VPN client? What's special about it?
  • How do you use it in your setup?
  • Do I need to know about this if I use Tailscale on the host for connecting to my VPN?
  • Would gluetun allow me to use an additional VPN provider for certain apps without messing with the host Tailscale?
you are viewing a single comment's thread
view the rest of the comments
[–] null_dot@lemmy.dbzer0.com 4 points 1 day ago (2 children)

I'd seen gluetun mentioned but didn't know what it was for until a moment ago.

I've heard of tailscale and at least know what that does but never used it.

I personally have a mullvad subscription. I have a container connected to that with wireguard, and then for services I want to use that VPN I just configure them to use the network stack from that container.

I'm not suggesting that my way is the best but it's worked well for several years now.

[–] rowinxavier@lemmy.world 2 points 1 day ago

That is essentially what gluetun does. It is a little simpler to set up given that it is all preinstalled and you just select your provider and details and it is done. And again, you just specify the network for other containers to use the gluetun service and it is done. Very simple, easy for using many services through one VPN connection, and available on things like CasaOS with simple setup.

[–] eleijeep@piefed.social 1 points 1 day ago (1 children)

I just configure them to use the network stack from that container.

Can you explain how you do this (or link to a guide that you found useful)? Thanks

[–] null_dot@lemmy.dbzer0.com 5 points 1 day ago (1 children)
services:
  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent
    container_name: qbittorrent
    environment:
      - PUID=888
      - PGID=888
      - TZ=Australia/Perth
      - WEBUI_PORT=8080
    volumes:
      - ./config:/config
      - /srv/downloads:/downloads
    restart: unless-stopped
    network_mode: "container:wg_out"

this is my compose.yml for a qbittorrent instance.

the part you're interested in is the final line. There's another container with the wireguard instance called "wg_out". This network mode attaches this qbittorrent container to that wireguard container's network stack.

[–] eleijeep@piefed.social 0 points 1 day ago

Ah, docker compose makes it easy! Thanks.