欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

service command not found

程序员文章站 2022-05-29 09:09:26
...

我在使用docker安装nginx时,镜像环境是centos,报如下错误:
nginx.sh service command not found
然后退出了镜像生成过程,解决办法:
进入容器内:
输入
service 发现真的没有

yum list | grep initscripts

会出现以下信息

initscripts.x86_64

使用yum安装一个

yum install initscripts -y

在输入service 就ok啦
那么需要dockerfile里面加

RUN yum install initscripts -y