I build the nginx container image successfully. but its not getting started.
Sudo docker run -it imageid /bin/sh を使用してイメージ内に入り、nginx コンテナーを起動しようとしました。以下のnginxを起動するために使用されるスクリプトを見つけてください:
Entrypoint.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.
image:nginx -t コマンド内で nginx のステータスを確認するコマンド。
nginx : 構成ファイル /opv/nginx-18/nginx/nginx.conf 構文は問題ありませんでした nginx : 構成ファイル /opv/nginx-18/nginx/nginx.conf テストは成功しました それを使用して nginx を起動する方法を教えてください指図。