This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new f142e9ba4e Add support for OrbStack in breeze (#38725)
f142e9ba4e is described below
commit f142e9ba4ea7f767a23cfac88b1b3bb43a539265
Author: Jed Cunningham <[email protected]>
AuthorDate: Wed Apr 3 17:37:32 2024 -0400
Add support for OrbStack in breeze (#38725)
---
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():