-
Notifications
You must be signed in to change notification settings - Fork 174
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
[v1.13] docker client hangs #3720
Comments
This could be related with the API version piece as client seems to waiting docker events to arrive. Raising another one for documenting the fact that we don't support new client versions. |
did hello world ever work? iirc we had problems all along with the default one. |
Yes, hello-world works fine with older clients |
Added proposed release note entry in #3734. |
I've identified the new code that is causing the hang. The 1.13 CLI changed the run code to now subscribe to events, which we have not yet implemented. It's waiting on an event from the daemon that says the container died, detached, or was destroyed. It appears they have switched to using events instead of container wait to determine if the container has exited. The only way to fix this is to implement events subscription. |
Removing kind/note from this one as the RN update is being tracked in #3734. |
lgtm |
running
docker run hello-world
using 1.13 client ends up with a hung client. The underlying VM starts and then powers off as expected. Tether, portlayer and personality logs shows no errors. Looking at the pporf output suggests that the client waits an event. Using v1.12 client works as expected.The text was updated successfully, but these errors were encountered: