• 0 Posts
  • 16 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle







  • Lots o religious nuts here in the state want to make it less evil and satanic because Jebus. But also if you’re a parent to small kids you don’t really want to go as the psycho holding a distended disembodied still beating heart if for anything other than not wanting to have to wake up to their nightmares constantly.








  • The important concepts aren’t that complicated.

    Instead of nesting a computer (VM’s) the operating system makes the program think it’s on its own dedicated computer (isolated file system space, cpu, and memory shares). A Dockerfile is just a basic script to construct one of these computers by commands and files.

    The real reason people get excited is because they can ship a Docker “image”. It’s a layered filesystem which really is just like saying there’s a system tracking who puts what files in what place and so it’s easier to just send the whole setup to someone then try to document how you should set all that stuff up to run their software.

    This is “dummier” proof than the pre-existing convention of just using a package manager to do this for you.