嗨,我试图了解如何在Dockerfile中添加配置命令,但到目前为止,我没有得到任何好的结果。
我写这行
RUN sed -i 'EnableSendfile Off' /etc/httpd/conf/httpd.conf
正确的版本将如何?
非常感谢
最佳答案
我想知道sed命令在您写下来时是否有效。
RUN sed -i -e 's/this/that/g' filename
工作正常,所以可能是
RUN sed -i -e 's/EnableSendfile On/EnableSendfile Off/g' /etc/httpd/conf/httpd.conf
您有什么样的结果或错误?
关于apache - 从Dockerfile设置EnableSendfile Off,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35479540/