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.


Why run a docker through a vm on Windows when you can just run docker natively? I don’t understand the convolution.
Use whatever you are more comfortable with.
Thats how docker runs “natively” on windows, its kernel has no support for namespaces nor cgroups that containers require
WSL, Hyper-V and Windows Containers are all options
they have to be built specifically for windows (of course the kernels are different, so the binaries are going to be different) but you can run Windows native applications on Windows kernel with a different implementation of containers using the standard Docker CLI and interfaces
Cgroups are just 1 (by far the most common) implementation of the container backend
No. You can install docker directly in Windows. OP is running a Linux VM and then docker inside of that.
Docker desktop for Windows runs under WSL or Hyper-V, both being VMs themselves.
Arguably running a Linux VM themselves will only offer them more customisation options (although may be heavier than WSL)