github.com/wozhu6104/docker@v20.10.10+incompatible/client/client_unix.go (about)

     1  // +build linux freebsd openbsd netbsd darwin solaris illumos dragonfly
     2  
     3  package client // import "github.com/docker/docker/client"
     4  
     5  // DefaultDockerHost defines os specific default if DOCKER_HOST is unset
     6  const DefaultDockerHost = "unix:///var/run/docker.sock"
     7  
     8  const defaultProto = "unix"
     9  const defaultAddr = "/var/run/docker.sock"