• 0 Posts
  • 7 Comments
Joined 29 days ago
cake
Cake day: March 30th, 2026

help-circle
  • Take Part in the Free “Huge Vegan Survey"!

    The Huge Vegan Survey is now open, and your voice is needed. Run independently by UK-based zoologist Jordi Casamitjana, this global study is looking for adults worldwide who identify as vegan, plant-based, or something similar to complete a short online questionnaire.

    The goal? To build one of the largest and most comprehensive international snapshots of what draws people to — and keeps them in — vegan and plant-based lifestyles.

    Here’s what to know before you dive in:

    • Fully anonymous — no registration, no personal details required
    • Takes just 10–20 minutes to complete
    • Your responses help researchers, advocates, and outreach efforts better understand and support our communities

    Every response makes the picture clearer and the data stronger, so please take a few minutes to participate, and spread the word with friends, family, and your favorite online groups!

    [edit: removed the original link tracking from reddit OP]




  • I haven’t tried any out-of-the-box solution or setup script, so I can’t talk about them. if you go diy or want to edit any solution to have internet access exclusively over VPN (or not at all otherwise), I can recommend gluetun. Other than that, I just have a simple docker compose file and a reverse proxy. I recommend not exposing it to the www, but to keep it only accessible in your local network, or tailscale, if your use case allows it. Note: if you set up https, you might be leaking your subdomains in permanent certificate transparency records.



  • At work I use kubernetes and quite like that (upgrading containers without downtime FTE), but I didn’t bother trying to set up the infrastructure myself. Some argue, it’s not with the efford for self hosting, I dunno.

    What I do like to use is Dockge, to keep docker but also keep your sanity. It even offers a single button for “docker compose pull”, which is great of you don’t have to many compose files / stacks. Combine with a simple shell script to batch pull/build all stacks in one go, plus some backup solution, and it’s actually nice to use and does all that I need. I love CLIs, but I’ve had situations where the GUI came in very handy.

    #! /bin/bash
    # note: this will update and START all dockge stacks, even if you stopped them before
    shopt -s nullglob
    for proj in /opt/dockge /opt/stacks/*/; do
      echo "> $proj"
      docker compose -f "$proj/compose.yaml" up --pull always --build --detach
      echo ""
    done