The Server section of version output is now composed of an Engine component and potentially more, based on what the /version endpoint returns. Signed-off-by: Tibor Vass <tibor@docker.com>
11 lines
218 B
Go
11 lines
218 B
Go
package cli
|
|
|
|
// Default build-time variable.
|
|
// These values are overriding via ldflags
|
|
var (
|
|
PlatformName = ""
|
|
Version = "unknown-version"
|
|
GitCommit = "unknown-commit"
|
|
BuildTime = "unknown-buildtime"
|
|
)
|