简体   繁体   English

Adobe Media Server Docker

[英]Adobe Media Server Docker

I need to put Adobe Media Server in a docker container. 我需要将Adobe Media Server放在docker容器中。 This is my Dockerfile 这是我的Dockerfile

FROM centos:6

WORKDIR /

ADD . /

RUN tar -xzf AdobeMediaServer5_x64.tar.gz
RUN rm -Rf ./AMS_5_0_15_r5004/License.txt
RUN sed -i -e 's:read cont < /dev/tty:#read cont < /dev/tty:g' ./AMS_5_0_15_r5004/installAMS
RUN ./AMS_5_0_15_r5004/installAMS < ./installAMS.input

EXPOSE 1935

installAMS.input installAMS.input

\n
\n
/opt/adobe/ams
homestead
homestead
homestead
ams
y
ams
n
1935,80
1111
y
y
y

But on server start, this errors is throw: 但是在服务器启动时,会引发以下错误:

Server:ams command:start
error: "Read-only file system" setting key "kernel.sem"

And server doesn't work. 服务器无法正常工作。

"Read-only file system" is probably unrelated to any issue with your docker file . “只读文件系统”可能与docker file的任何问题无关。 When I get that error, I can often resolve with docker system prune 当我收到该错误时,我通常可以使用docker system prune解决

You can see an example of a working Dockerfile for Adobe Media Server here: https://github.com/veriskope/docker-adobe-media-server 您可以在此处查看适用于Adobe Media Server的Dockerfile的示例: https//github.com/veriskope/docker-adobe-media-server

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM