So I have a couple options at my disposal. I’m fairly beginner with self hosting, with linux, and command line.
So my options are
-
Run server via ubuntu vm on windows 11 machine that I already run my plex server and some game servers through.
-
Use random other computer, install ubuntu or ubuntu server on and host that way. Not sure if ubuntu or ubuntu server would be better for me. I’m not sure what the hardware is yet, but I know it’s pretty old and likely lower end. I have very little cli experience and I want to learn to be better command line so maybe ubuntu server would be a good learning experience.
-
Host it via docker on linux machine.


#3
Interesting. Could you expound on why that option, and what some pros and cons would be?
Hosting things in docker separates then from the OS and makes upgrading safer and easier.
Eventually, you’ll want to update your OS. If the software is right on the OS, you might break it. If it’s in docker and the machine breaks, run the container on another machine.
If you upgrade your software and it breaks, in docker you just go back to the previous container. It’s still there and hasn’t changed. If the software is on your OS directly, an uninstall and reinstall might work, but might not.
The simplest and most pragmatic option.
thank you sir