We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have right to the following error when sending a SIGTERM to a running docker container.
SIGTERM
GLib-WARNING **: poll(2) failed due to: Operation not permitted.
The text was updated successfully, but these errors were encountered:
I investigated this and it seems we can still send a SIGTERM via docker stop, it just doesn't play well via the pseudo-TTY.
docker stop
This can wait for a patch release.
Sorry, something went wrong.
^C works fine when my Dockerfile contains:
ENTRYPOINT /app/bin/app --any --port 3003
but it doesn't do anything when my Dockerfile contains:
ENTRYPOINT ["/app/bin/app", "--any", "--port", "3003"]
The difference here is that your option implies using a shell for running the command. Ideally VSGI should handle SIGTERM properly.
arteymix
No branches or pull requests
We have right to the following error when sending a
SIGTERM
to a running docker container.The text was updated successfully, but these errors were encountered: