Tengo el siguiente Dockerfile que debería iniciar una máquina centos e instalar httpd:
FROM centos:centos6.6RUN yum install -y httpdRUN chkconfig httpd on; RUN /etc/init.d/httpd startEXPOSE 80CMD ["/bin/bash"]
Construyo la imagen:
docker build --no-cache -t centos_http .
La compilación dice:
...Step 4/6 : RUN /etc/init.d/httpd start---> Running in 0766e84ec292Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.0.2 for ServerName[ OK ]...Successfully built 5380a0bacdfb
Pero si ejecuto la imagen:
docker run -p 8090:80 -it 5380[root@eda7400a46a9 /]# ps -ef | grep httpd | grep -v grep[root@eda7400a46a9 /]#
httpd no se está ejecutando!si ejecuto manualmente /etc / init.d / httpd start, dentro de la imagen, funciona bien...