This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-9-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit de98856211a0ad517c7da37c1ec21973b08f8f45 Author: Jed Cunningham <[email protected]> AuthorDate: Wed Apr 3 17:37:32 2024 -0400 Add support for OrbStack in breeze (#38725) (cherry picked from commit f142e9ba4ea7f767a23cfac88b1b3bb43a539265) --- dev/breeze/src/airflow_breeze/utils/docker_command_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py index cb75be5f19..ce07977a7b 100644 --- a/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py +++ b/dev/breeze/src/airflow_breeze/utils/docker_command_utils.py @@ -612,7 +612,7 @@ def remove_docker_networks(networks: list[str] | None = None) -> None: # and it does not require the user to belong to the "docker" group. # The "default" context is the traditional one that requires "/var/run/docker.sock" to be writeable by the # user running the docker command. -PREFERRED_CONTEXTS = ["desktop-linux", "default"] +PREFERRED_CONTEXTS = ["orbstack", "desktop-linux", "default"] def autodetect_docker_context():
