mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-23 23:22:58 -05:00
9 lines
301 B
Go
9 lines
301 B
Go
// +build linux freebsd openbsd darwin
|
|
|
|
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"
|