• jagged_circle@feddit.nl
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 day ago

    Technical ease of running your own backend. Full points for Docker/simple setup with good docs.

    Oof, they neef a column for security to mark back down all the services that use docker.

    • danA
      link
      fedilink
      arrow-up
      4
      ·
      23 hours ago

      How does Docker reduce security?

      • jagged_circle@feddit.nl
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        17 hours ago

        It downloads things without checking signatures by default. And even if you enable DCT, it TOFUs every key without even asking or checking against a WoT

        Basically, using docker means you could run malicious code (arbitrary code execution) in your container because it doesn’t verify what it downloads.

        • jarfil@beehaw.org
          link
          fedilink
          arrow-up
          1
          ·
          11 hours ago

          The bright side is, that you run it in a container. Beware of privileged mode, don’t give it unnecessary mounts or networks, and there’s very little some malicious code can do.

          If you’re using it for a build system, tough luck but you need to manage the keys to avoid TOFU, and ideally pull from your own registry.

          • jagged_circle@feddit.nl
            link
            fedilink
            English
            arrow-up
            1
            ·
            edit-2
            4 hours ago

            A container that has access to all the data on the database. All the users data is compromised. And the attacker can execute malicious JavaScript on the users.

            There’s nothing bright about using docker. Its a huge risk.