Httpd docker在几天后停止

时间:2017-11-13 20:46:47

标签: apache http docker

我尝试使用docker store(https://store.docker.com/images/httpd)中的httpd图像在docker中运行一个小型个人Web服务器。

然而,它在开始时工作正常,但往往只是在几天后停止,需要使用" docker start"重启,并且我没有发现有什么问题。对于CentOS版本,网上有一些建议,但我没有找到任何Docker Store图像。

Docker文件是:

FROM httpd:2.4
LABEL maintainer "mats.ohrman@gmail.com"
COPY ./content/ /usr/local/apache2/htdocs/
COPY ./config/httpd.conf /usr/local/apache2/conf/httpd.conf
COPY ./config/httpd-vhosts.conf /usr/local/apache2/conf/extra/httpd-vhosts.conf 

Docker" build" cmd我用过:

docker build -t matsohrman/web .

Docker"运行" cmd我用过:

docker run -dit --name web -p 80:80 matsohrman/web

0 个答案:

没有答案