github.com/mutagen-io/mutagen@v0.18.0-rc1/pkg/docker/docker_windows.go (about) 1 package docker 2 3 import ( 4 "os/exec" 5 ) 6 7 // commandPathForPlatform searches for the docker command in the user's path. 8 func commandPathForPlatform() (string, error) { 9 return exec.LookPath("docker") 10 }