mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
Removed pre-go1.17 build-tags with go fix;
go mod init
go fix -mod=readonly ./...
rm go.mod
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
8 lines
271 B
Go
8 lines
271 B
Go
//go: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"
|