Docker 17.10 was cut off from ab2b03a0e139537376bbf66c1e1e9e897a403f06 Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 288abf0854852b4542da359400b3c29e99941fc9 Component: engine
12 lines
292 B
Go
12 lines
292 B
Go
package api
|
|
|
|
// Common constants for daemon and client.
|
|
const (
|
|
// DefaultVersion of Current REST API
|
|
DefaultVersion string = "1.34"
|
|
|
|
// NoBaseImageSpecifier is the symbol used by the FROM
|
|
// command to specify that no base image is to be used.
|
|
NoBaseImageSpecifier string = "scratch"
|
|
)
|