diff --git a/dangerzone/container.py b/dangerzone/container.py index c3d00d7..5547b7c 100644 --- a/dangerzone/container.py +++ b/dangerzone/container.py @@ -9,7 +9,7 @@ import shutil if platform.system() == "Darwin": container_runtime = "/usr/local/bin/docker" elif platform.system() == "Windows": - container_runtime = "C:\\Program Files\\Docker\\Docker\\resources\\bin\\docker.exe" + container_runtime = shutil.which("docker.exe") else: container_runtime = shutil.which("docker")