github.com/mutagen-io/mutagen@v0.18.0-rc1/pkg/docker/docker_posix.go (about)

     1  //go:build !windows && !darwin
     2  
     3  package docker
     4  
     5  import (
     6  	"os/exec"
     7  )
     8  
     9  // commandPathForPlatform searches for the docker command in the user's path.
    10  func commandPathForPlatform() (string, error) {
    11  	return exec.LookPath("docker")
    12  }