blob: 319b738d3e2887fcd9d031712f0c4a79de2edf9d (
plain)
1
2
3
4
5
6
7
8
|
//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"
|