github.com/adityamillind98/moby@v23.0.0-rc.4+incompatible/client/client_unix.go (about) 1 //go:build linux || freebsd || openbsd || netbsd || darwin || solaris || illumos || dragonfly 2 // +build linux freebsd openbsd netbsd darwin solaris illumos dragonfly 3 4 package client // import "github.com/docker/docker/client" 5 6 // DefaultDockerHost defines OS-specific default host if the DOCKER_HOST 7 // (EnvOverrideHost) environment variable is unset or empty. 8 const DefaultDockerHost = "unix:///var/run/docker.sock" 9 10 const defaultProto = "unix" 11 const defaultAddr = "/var/run/docker.sock"