我无法在Docker容器中运行任何yum命令,而没有出现以下错误:
ovl: Error while doing RPMdb copy-up: [Errno 13] Permission denied: '/var/lib/rpm/Group' You need to be root to perform this command.
我很困惑,因为我非常确定docker容器是使用默认用户root运行的。不过,如果我尝试将sudo放在a yum install -y <package>或yum update -ycommand 前面,则会得到:
yum install -y <package>
yum update -y
/bin/sh: sudo: command not found
我正在使用以下基本映像,以便可以在Docker中轻松运行Java Wildfly应用程序:https ://hub.docker.com/r/jboss/wildfly/
底层发行版是 CentOS Linux release 7.2.1511 (Core)
CentOS Linux release 7.2.1511 (Core)
原来,用户已jboss在基本图像中设置为。 当使用dockerfile命令切换到root用户时,USER root一切正常。
jboss
USER root