无法在CentOS上运行的Docker容器内使用yum
我无法在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 -y
command 前面,则会得到:
/bin/sh: sudo: command not found
我正在使用以下基本映像,以便可以在Docker中轻松运行Java
Wildfly应用程序:https
://hub.docker.com/r/jboss/wildfly/
底层发行版是 CentOS Linux release 7.2.1511 (Core)
回答:
原来,用户已jboss
在基本图像中设置为。
当使用dockerfile命令切换到root用户时,USER root
一切正常。
以上是 无法在CentOS上运行的Docker容器内使用yum 的全部内容, 来源链接: utcz.com/qa/434723.html