我遇到了与主管停止无花果过程的问题。
supervisorctl start web_app
成功启动网络服务器,返回状态或RUNNING和某个pid。
当我跑步时
supervisorctl stop web_app
进程似乎终止,因为状态变为STOPPED并且pid变为0,但实际的docker容器继续运行且Web应用程序永远不会终止。
supervisor.conf:
[program:web_app]
command = fig --file /home/luna/docker_test/fig.yml up
stopasgroup = true
killasgroup = true
autostart = false
autorestart = true
有什么想法吗?
答案 0 :(得分:1)
查看无花果源代码,发现我必须将stopsignal = INT
添加到supervisor.conf