mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
de705907a5
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
362 B
Go
11 lines
362 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package client // import "github.com/docker/docker/client"
|
|
|
|
// DefaultDockerHost defines OS-specific default host if the DOCKER_HOST
|
|
// (EnvOverrideHost) environment variable is unset or empty.
|
|
const DefaultDockerHost = "unix:///var/run/docker.sock"
|
|
|
|
const defaultProto = "unix"
|
|
const defaultAddr = "/var/run/docker.sock"
|