-
Notifications
You must be signed in to change notification settings - Fork 316
New issue
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
Change stop_wait_time
value to match Docker default
#858
Conversation
According to Docker documentation¹, the `--time` option default value is 10 seconds. [1] https://docs.docker.com/engine/reference/commandline/stop/
docker::run is a typeBreaking changes to this file WILL impact these 9 modules (exact match):Breaking changes to this file MAY impact these 22 modules (near match):
This module is declared in 6 of 579 indexed public
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
stop_wait_time
value to Docker defaultstop_wait_time
value to match Docker default
LGTM. Failures are unrelated. Thanks for your contribution! |
According to Docker documentation, the
--time
option default value is 10 seconds.The module set this value to 0, causing immediate destruction of the container instead of leaving it a 10s grace time to shutdown.
Use the default value of 10 to honor the default behavior.