mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-01 13:48:56 +08:00

Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com> Signed-off-by: dusanb94 <dusan.borovcanin@mainflux.com>
11 lines
346 B
Go
11 lines
346 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package opts
|
|
|
|
// defaultHost constant defines the default host string used by docker on other hosts than Windows
|
|
const defaultHost = "unix://" + defaultUnixSocket
|
|
|
|
// defaultHTTPHost Default HTTP Host used if only port is provided to -H flag e.g. dockerd -H tcp://:8080
|
|
const defaultHTTPHost = "localhost"
|