Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 2f007e46d0100d865a061c1a8e544bddc0b7a368 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.32"
|
|
|
|
// NoBaseImageSpecifier is the symbol used by the FROM
|
|
// command to specify that no base image is to be used.
|
|
NoBaseImageSpecifier string = "scratch"
|
|
)
|