Skip to content

Commit 5a434e9

Browse files
authored
INTPYTHON-641 Always prefer podman over docker (#656)
1 parent 9218cfd commit 5a434e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/orchestration/drivers_orchestration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def get_options():
174174

175175
def get_docker_cmd():
176176
"""Get the appropriate docker command."""
177-
docker = shutil.which("docker") or shutil.which("podman")
177+
docker = shutil.which("podman") or shutil.which("docker")
178178
if not docker:
179179
return None
180180
if "podman" in docker:

0 commit comments

Comments
 (0)