Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 vmware/photon:2.0 创建 Docker 映像我想以不同于 root 的用户身份在该容器内运行应用程序。因此,尝试通过以下命令创建一个新组并将用户添加到其中:
groupadd -r new-group && useradd -r -g new-group new-user
它抛出:
bash: groupadd: command not found
我怎样才能做到这一点?
您可以安装“影子”包以便能够添加组/用户。
tdnf -y install shadow
这对于 Photon:3.0 是不必要的。所有必备工具均已准备就绪。那可能是因为我安装了一个 dep 包或者只是在那里。