What can the 'average Joe' start hosting, that will change their life?

jaackf@lemmy.world to Selfhosted@lemmy.world – 997 points –

I'm already hosting pihole, but i know there's so much great stuff out there! I want to find some useful things that I can get my hands on. Thanks!

666

You are viewing a single comment

To understand it you'll need to know roughly what an OS is. Very roughly speaking an OS provides a program with a way to access files, connect to the internet and launch other programs.

What docker does is make something a bit like a 'virtual' OS with its own filesystem, network and task manager, and then start running programs in it (which then may launch other programs).

Since you're not making a VM which must simulate all of the hardware, this is a lot cheaper. However since a docker container gets its own filesystem, network etc. it can do whatever it wants without any other programs getting in the way.

Among other things docker containers make installation a lot easier since a program will only ever see its own files (unless you explicitly add your own files to the docker container). To a large extent you also don't need to worry about installing any prerequisites, since those can just be put into the container.

Making a docker container is a bit (a lot) like installing a fresh OS, just putting the stuff you need in it and then copying the whole OS whenever you want to run the thing again. Except it's been optimized such that it takes about as much effort as launching a program, as opposed to a VM which needs dedicated resources and are generally slower than the machine that hosts them.

I think the more intuitive model (to me) is instead of thinking of it as a lightweight virtual machine, or a neatly packaged up OS, is to instead think of it as a process shipped with an environment. That environment includes things like files and other executables (like apt), but in of itself doesn't constitute an OS. It doesn't have its own filesystems, drivers, or anything like that. By default it doesn't run an init system like systemd either, nor does it run any other applications other than the process you execute in the environment.

That's fair, but is that environment any different from just a virtual OS? I mean it doesn't have its own filesystem and drivers etc, but that's precisely because they've been made virtual.

In this context I'd say systemd is an application, not the OS, though the distinction gets iffy I know.

Does this mean Docker instances are large in size? I haven't used it either but I've been meaning to get into it. If I can use stuff like nodemon in it, it'd be great.

The images can get big, but they're fairly clever about it so it is manageable. Performance wise they don't take up more CPU and RAM than a regular application.

There's an (unofficial) image running nodemon on dockerhub about 250MB in size. The official NodeJS image is about 300MB (presumably they've preinstalled a bunch of stuff). You could start with the official image and install nodemon on it, that would probably be most future proof (no way of knowing if the unofficial image keeps getting updates, if any).