Installed a new debian server, installed docker, but then now i have a problem with permissions on passed directories.

On the previous server, the uid/gids inside the docker container match the uid/gid on the real server.

Root is 0, www-data is 33, and so on.

On this new server, instead, files owned by root (0) in the container are translated to 1000 on the server, www-data (33) is 100032, and so on (+1000 appended to the uid)

Is this normal or did I misconfigure something? On the previous server I was running everything as root (the interactive user was root), and i would like to avoid that

  • Moonrise2473OPEnglish
    arrow-up
    1
    arrow-down
    1
    ·
    10 months ago
    link
    fedilink

    i don’t want to type sudo before each single docker command

    • VoroxpeteEnglish
      arrow-up
      14
      arrow-down
      0
      ·
      10 months ago
      edit-2
      10 months ago
      link
      fedilink

      You can do that with regular docker. Just add your user to the docker group.

      (don’t forget to log out and log in again after adding new groups to your user)

      • twikedEnglish
        arrow-up
        4
        arrow-down
        0
        ·
        10 months ago
        link
        fedilink

        Niche use case, but you can also use newgrp to run commands with a recently-added group to your user, without having to logout/login yet.

        • Throw a FoxtrotEnglish
          arrow-up
          1
          arrow-down
          0
          ·
          10 months ago
          link
          fedilink

          Or start a new session by typing bash, when already in bash.

    • cheetEnglish
      arrow-up
      5
      arrow-down
      0
      ·
      10 months ago
      link
      fedilink

      So add your user to the new docker group made on install of that package and you’ll be able to docker without sudo. You may need to relogin or newgrp docker before it works tho