Comment on how to start with self-hosting?
billwashere@lemmy.world 2 days ago
Start with docker. Any OS will do. Most Linux distros are better but I run docker on Mac, Linux, Windows (not a lot in windows since I despise Microsoft but it does work).
The great thing about docker is it is very portable, modular, and easy to get back to a known state. Say you screw something up, just revert and start over. It’s also very easy to understand in my opinion. It’s like all the benefits of virtualization with much less over head.
mic_check_one_two@lemmy.dbzer0.com 2 days ago
Yeah, my only note is that Docker on Windows is… Kinda fucky? It uses WSL to run Linux in the background, which means that the volumes it creates aren’t easily accessible by Windows. If your container requires editing a config.json, for instance, that can be daunting for a newbie on Windows, because they won’t even know how to find the file.
You can work around this by mounting your volumes directly to a C:\ folder instead, but that’s something that many tutorials just completely skip past because they assume you already know that.
billwashere@lemmy.world 2 days ago
I’ve never understood the reason for WSL. If you want Linux, run Linux. At the very least in a VM.
Bakkoda@sh.itjust.works 2 days ago
I used to run Linux VMs in HyperV. It felt dirty.