-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
Fix autodetect_docker_context for list of dict case #34779
Fix autodetect_docker_context for list of dict case #34779
Conversation
40682bb
to
2028664
Compare
2028664
to
c4d525b
Compare
As follow up I guess we could try to run this step by use python-on-whales so many problems happen last time with this part and |
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.
This is so f-ked up
@Taragolis I can give it a shot. :) |
* Fix autodetect_docker_context for list of dict case * Handle the case of dict (cherry picked from commit 5c2dc53)
In breeze's autodetect_docker_context() there is one case that missed, when the output of
docker context ls --format=json"
is[{"Name": "desktop-linux", "DockerEndpoint": "unix://desktop-linux"}]
. This PR aims to handle this case.