Hello! I have a free account at hide.me and would like to try to use it with my docker compose containers. The free plan does not give me the keys for openVPN of Wireguard configuration, but only through the official client. I’d like then to create a docker container that runs the official hide.me client inside, and exposes it to other docker containers (like gluetun does, for instance). I’d also like to implement a killswitch or something like that to prevent ip leakage. Is this something easy-medium hard or something very complex? I already have a script that installs and runs the client to enable vpn that should be run at startup, but I miss the “expose the network interface” and the “do not expose it if not connected” (this last part I think is pretty easy with a basic firewall configuration)

any tips/something already done?
thanks in advance!

EDIT: probably crazy idea, but would it be possible to do this in gluetun?

  • sudneo@lemmy.world
    link
    fedilink
    arrow-up
    7
    ·
    5 months ago

    Each container, by default, runs in a separate network namespace. You can use docker CLI to create specific networks that can be shared with other containers, or use docker-compose for it. Technically, for processes outside containers you can still use the same network of that container by running the inside the network namespace of the ‘VPN’ container (for example running them with unshare). However, I wouldn’t recommend this, as containers are supposed to run mostly isolated workload and not for this kind of use-case. But yeah, technically it’s feasible.

    • tubbadu@lemmy.kde.socialOP
      link
      fedilink
      arrow-up
      4
      ·
      edit-2
      5 months ago

      isn’t it an entire OS? I only need to bind the internet traffic of my container to the ones I want doing something like network_mode: container:myhidemecontainer in docker compose

          • h3ndrik@feddit.de
            cake
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            5 months ago

            Fair enough. I got confused by their FAQ. They say Wireguard is supported on their free plan. But there is no config available with the keys, so you have to use their client to connect.

            I recently registered an account and wanted to do something similar. Guess it isn’t that easy then. Another possibility is to use protonvpn.com they also offer a free tier and you can connect any Wireguard client with that.

            Or you switch protocols and use for example IKEv2 with strongswan or OpenVPN or whatever hide.me offers in addition to wireguard. I think gluetun also does OpenVPN. But hide.me isn’t listed for some reason.

            • tubbadu@lemmy.kde.socialOP
              link
              fedilink
              arrow-up
              2
              ·
              5 months ago

              I used to use proton vpn but I recently learned that torrenting is not allowed on the free tier, so I had to look for alternatives, and none of them offers a free tier with openvpn or wireguard keys that allows torrenting :(

              • h3ndrik@feddit.de
                cake
                link
                fedilink
                arrow-up
                2
                ·
                edit-2
                5 months ago

                Ah, well I just learned about the existence of free vpn services. I’m going to use it to set up a free guest wifi, so the neighbors, guests (and I) can do whatever with it. But I also struggle with the setup. It’s complicated to get the wireguard interface set up, the guest wifi isolated and set up the split routing and everything so the different wifis on the router forward the traffic over different services.

      • library_napper@monyet.cc
        link
        fedilink
        arrow-up
        3
        arrow-down
        1
        ·
        5 months ago

        The risk if human error is too high. Docker isn’t designed for security. What you want is Qubes. Its destined to do these things.

  • grehund@beehaw.org
    link
    fedilink
    arrow-up
    2
    ·
    5 months ago

    Have you had a look at binhex’s privoxyvpn docker container? Sounds similar to what you’re looking to do.

  • mvirts@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    5 months ago

    Idk anything about those softwares, but I would bet if you set up the hide.me client in a container you could add it to the same network in compose then configure all the other containers to use it as their gateway… I’m probably missing some details and you may need to rebuild all of your containers, or maybe just change the network settings in your compose yaml?

  • SheeEttin@programming.dev
    link
    fedilink
    English
    arrow-up
    1
    ·
    5 months ago

    What are you running your containers on? I just put my VPN on the docker host so I could be sure I could use the firewall to block traffic from going out except over the VPN.