在全新安装的httpd和PHP映像和容器上,可以创建并正常工作。但是在重新启动系统后,httpd停止工作。无法找到docroot文件夹。因此,我们需要为此做任何设置吗?
抛出错误:
AH00112: Warning: DocumentRoot [/var/www/html/docroot/] does not exist docker error
答案 0 :(得分:0)
从文档中:
使用重新启动策略要为容器配置重新启动策略, 使用docker run命令时使用--restart标志。的价值 --restart标志可以是以下任意一项:
https://docs.docker.com/config/containers/start-containers-automatically/
答案 1 :(得分:0)
您必须以守护程序模式启动容器:
docker run -d hello-world