blob: d9baf92ba61bf14408f8c84114ee8906a95012a6 [file] [log] [blame]
//go:build !windows
package opts
const (
// DefaultHTTPHost Default HTTP Host used if only port is provided to -H flag e.g. dockerd -H tcp://:8080
DefaultHTTPHost = "localhost"
// DefaultHost constant defines the default host string used by docker on other hosts than Windows
DefaultHost = "unix://" + DefaultUnixSocket
)