• locuester@lemmy.zip
        link
        fedilink
        English
        arrow-up
        15
        ·
        2 hours ago

        Docker does by default - it only works if you use sudo. But the docs tell you to add yourself to the docker group (which requires sudo to do). Then running docker doesn’t require sudo anymore.

        • squaresinger@lemmy.world
          link
          fedilink
          arrow-up
          13
          ·
          2 hours ago

          Yeah, that’s a terrible decision in the docs. Don’t ever add a path where anything on the shell can execute user-modifyable code as root.

          As soon as you do that, you lose any protection that comes from separating root users and non-root users. Because now any malicious program can just use docker to elevate its code to root.

      • Zikeji@programming.dev
        link
        fedilink
        English
        arrow-up
        16
        ·
        2 hours ago

        Or don’t give your user docker and use sudo to use the docker CLI to get the same effect. Hell, you could even alias docker as sudo docker to get the same feel.