github.com/kaisenlinux/docker.io@v0.0.0-20230510090727-ea55db55fac7/engine/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 if DOCKER_HOST is unset
     7  const DefaultDockerHost = "unix:///var/run/docker.sock"
     8  
     9  const defaultProto = "unix"
    10  const defaultAddr = "/var/run/docker.sock"