• @[email protected]
    link
    fedilink
    English
    35
    edit-2
    1 month ago

    It is moments like this where I wished docker didn’t exist. Could have made some news headlines.

    • NeilBrü
      link
      471 month ago

      Could of have made

      or

      Could of Could’ve made

      • @[email protected]
        link
        fedilink
        English
        22
        edit-2
        1 month ago

        How dare you correct my high in the morning ass!

        That being said, I made the edit. I bet it made the comment better.

          • @[email protected]
            link
            fedilink
            41 month ago

            I wonder if this is a mistake only native speakers do, because I (as non native speaker) don’t understand why anyone would mistake “of” for “have”.

            • Midnight Wolf
              link
              English
              2
              edit-2
              1 month ago

              It’s because when it’s said aloud, many of us just truncate the “have” ('ve) and it sounds like “of”. Then we go to type it and often type what we think it sounds like…

          • @[email protected]
            link
            fedilink
            English
            21 month ago

            No problem man I understand. I accept your 'tism and hope you having a good day.

            And if not take a hit 😎

    • @[email protected]
      link
      fedilink
      51 month ago

      I hope they are using more than just docker for isolation 😅 Each user should be running in a different VM for security.

      • @[email protected]
        link
        fedilink
        English
        11 month ago

        The only fuckers who are getting their own VM is enterprise lol. I can’t imagine they give that much of a fuck about their average user.

      • @MrPoopbutt
        link
        11 month ago

        I ask out of ignorance - Why is docker insufficient for isolation?

        • @[email protected]
          link
          fedilink
          61 month ago

          The short answer is that Docker (and other containerization technologies) share the Linux kernel with the host. The Linux kernel is very complicated and shouldn’t be trusted to be vulnerability free. Exploitable bugs are regularly discovered in the Linux kernel (and Windows and Darwin). No serious companies separate different tenets with just container technology. Look at GCP, AWS, DigitalOcean… they all use hardware virtualization which is much simpler and much more likely to be secure (but even then bugs are found on occasion).

          So in theory it is secure, but it is just too complex to rely on. I say that docker is good for “mostly trusted” isolation. Different organizations in the same companies, different software that isn’t actively trying to be malicious. But shouldn’t be used to separate different untrusted parties.