You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start the above with docker-compose up everything is running fine.
Current behavior:
When Ctrl-C is pressed, Docker sends SIGTERM immediately and nothing happens. After 10s Docker sends SIGKILL and this is the moment when both forever and my app stop.
Expected behavior:
When Ctrl-C is pressed, Docker sends SIGTERM immediately and forever should forward SIGTERM to the node process immediately IMO.
The text was updated successfully, but these errors were encountered:
I think that
forever
does not react to SIGTERM signal in any way. Here is an example:Given the following setup in Docker:
Start the above with
docker-compose up
everything is running fine.Current behavior:
When
Ctrl-C
is pressed, Docker sends SIGTERM immediately and nothing happens. After 10s Docker sends SIGKILL and this is the moment when both forever and my app stop.Expected behavior:
When
Ctrl-C
is pressed, Docker sends SIGTERM immediately and forever should forward SIGTERM to the node process immediately IMO.The text was updated successfully, but these errors were encountered: