mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
686be57d0a
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
428 B
Go
10 lines
428 B
Go
//go:build linux || freebsd || openbsd || netbsd || darwin || solaris || illumos || dragonfly
|
|
// +build linux freebsd openbsd netbsd darwin solaris illumos dragonfly
|
|
|
|
package client // import "github.com/docker/docker/client"
|
|
|
|
// DefaultDockerHost defines os specific default if DOCKER_HOST is unset
|
|
const DefaultDockerHost = "unix:///var/run/docker.sock"
|
|
|
|
const defaultProto = "unix"
|
|
const defaultAddr = "/var/run/docker.sock"
|