Containers are chroot with a Marketing Budget (earthly.dev)
from learnbyexample@programming.dev to linux@lemmy.ml on 14 Nov 14:41
https://programming.dev/post/21707045

#linux

threaded - newest

nous@programming.dev on 14 Nov 15:06 next collapse

Um no. Containers are not just chroot. Chroot is a way to isolate or namespace the filesystem giving the process run inside access only to those files. Containers do this. But they also isolate the process id, network, and various other system resources.

Additionally with runtimes like docker they bring in vastly better tooling around this. Making them much easier to work with. They are like chroot on steroids, not simply marketing fluff.

Markaos@lemmy.one on 14 Nov 17:38 collapse

The author acknowledges that, the blog post seems to be aimed at demystifying the concept of namespaces by showing that a “container runtime” that only does limited filesystem namespaces (using chroot) is enough to get some widely used containers running (of course without all the nice features and possibilities of the other types of namespaces)

Dirk@lemmy.ml on 14 Nov 15:11 next collapse

So they say I can run a dozen of different web applications on the same machine all on the same port internally and different port externally and have a reverse proxy forwarding the traffic to the correct port based on the hostname it was called with by simply using a bunch of chrooted environments?

IsoKiero@sopuli.xyz on 14 Nov 15:28 next collapse

Not that it’s really relevant for the discussion, but yes. You can do that, with or without chroot.

That’s obviously not the point, but we’re already comparing oranges and apples with chroot and containers.

nickwitha_k@lemmy.sdf.org on 15 Nov 03:45 collapse

Without the chroot, that’s how shared webhosting works but it can be hundreds or thousands of sites, depending on resource usage and server capacity.

Dirk@lemmy.ml on 15 Nov 06:30 collapse

I know how shared webhosting works. This is why I wonder why the author thinks containers and chroots are the same thing.

nickwitha_k@lemmy.sdf.org on 15 Nov 18:28 collapse

Oh that makes more sense. I probably took you too literally.

savvywolf@pawb.social on 14 Nov 16:19 next collapse

Honestly, since getting into NixOS, I’ve found that much more of an elegant system than Docker or whatever.

Atemu@lemmy.ml on 15 Nov 04:58 collapse

You’re comparing apples to oranges. One is a declarative Linux system environment creation solution and the other a daemon that starts sub-system environments using Linux namespaces.

You could in theory use NixOS to define a system environment that you’d run inside of a docker container. It’s a bit harder to get systemd running inside of Docker which NixOS heavily relies on but that’s beside the point. Easier integrations exist for LXD and systemd-nspawn which actually fulfil an equivalent purpose to Docker. The single component that is most comparable to Docker in a typical NixOS deployment would arguably be its init process (systemd), though its use extends far beyond setting up the namespace (the root namespace in this case).

savvywolf@pawb.social on 15 Nov 10:13 collapse

As I understand it, the problem that both Nix and Docker try to solve is “How do I bundle and run this application in such a way that its dependencies are explicitly specified and don’t interfere with anything installed on the host system”.

They have different approaches, but I think that goal is the same?

porous_grey_matter@lemmy.ml on 15 Nov 15:39 next collapse

No, containers further isolate the network and hardware interaction of the process etc

savvywolf@pawb.social on 15 Nov 19:01 collapse

Unless it has changed recently, Docker is not intended to be a security layer as far as I know.

[deleted] on 15 Nov 23:59 collapse

.

Atemu@lemmy.ml on 15 Nov 19:34 collapse

That’s Nix, not NixOS.

I also wouldn’t be too sure on that “explicit” part for Docker. It’s somewhat isolated, sure, but everything but explicit: you can download arbitrary data from wherever you like.

Vendetta9076@sh.itjust.works on 14 Nov 17:32 next collapse

First of all: no, and repeating this nonsense over and over doesn’t make it any more true.

Second of all: I truly will never understand the hatred some people have for docker. If you prefer all bare metal install, then fine. But constantly shouting from the rooftops how useless and bad docker is seems a little silly.

isVeryLoud@lemmy.ca on 14 Nov 18:00 next collapse

People are afraid of what they do not understand. This still holds true here.

And fear leads to hate.

tapdattl@lemmy.world on 14 Nov 18:30 collapse

Which eventually leads to the Dark Side

Solumbran@lemmy.world on 14 Nov 20:09 next collapse

Containers are fine but docker is a pain in the ass that lazy people use when they don’t want to provide clean installation/packaging.

How many times have I seen an equivalent of “we use a custom fork of an obsolete version of an unmaintained package, so if you want to compile it yourself good luck because we forgot how we even did it. Alternatively, you can install the docker version”…

Atemu@lemmy.ml on 15 Nov 04:59 next collapse

Great way to show off you haven’t actually read any of the article past its title.

frazorth@feddit.uk on 15 Nov 05:54 next collapse

Title is clickbate.

Vendetta9076@sh.itjust.works on 15 Nov 09:07 collapse

I read the whole thing, thank you very much. It’s still nonsense. So you can take your sarcastic remarks and go somewhere else.

lengau@midwest.social on 15 Nov 13:06 collapse

Containers are great, but I find Docker’s way of making container images to be pretty bad, personally. Fortunately you can use other tools to create OCI images and then copy them into Docker, as the runtime is pretty nice for dev machines.

Eyck_of_denesle@lemmy.zip on 15 Nov 05:20 next collapse

Just read the article y’all

cosmicbytes@programming.dev on 15 Nov 21:37 collapse

Slightly related: my own blogpost about demistifying containers. It takes a quite different approach from the OP and focuses on a different side of containers. Would appreciate any feedback!

cosmicbyt.es/…/demistifying-containers-part-1/

blackbeards_bounty@lemmy.dbzer0.com on 16 Nov 02:42 collapse

Your site is great!

cosmicbytes@programming.dev on 16 Nov 04:24 collapse

Thank youu!! I’m so glad that you like it :')