I build the nginx container image successfully. but its not getting started.
我使用 sudo docker run -it imageid /bin/sh 进入图像内部并尝试启动 nginx 容器。在下面找到用于启动 nginx 的脚本:
入口点.sh:
cd /app/server/sbin/
./nginx -g 'daemon off'
echo "After start"
At the ./nginx command the script is not executing, am also not seeing any error. I cross verified the nginx status.
在我的图像中检查 nginx 状态的命令:nginx -t 命令。
nginx : 配置文件 /opv/nginx-18/nginx/nginx.conf 语法没问题 nginx : 配置文件 /opv/nginx-18/nginx/nginx.conf 测试成功 请告诉我如何用它启动 nginx命令。