2014-02-24 19:48:14 +00:00
|
|
|
package api
|
|
|
|
|
2015-03-24 01:30:09 +00:00
|
|
|
// Common constants for daemon and client.
|
2014-02-24 19:48:14 +00:00
|
|
|
const (
|
2016-10-03 18:49:49 +00:00
|
|
|
// DefaultVersion of Current REST API
|
2017-12-07 21:52:49 +00:00
|
|
|
DefaultVersion string = "1.36"
|
2015-06-17 21:57:32 +00:00
|
|
|
|
2015-12-31 13:57:58 +00:00
|
|
|
// NoBaseImageSpecifier is the symbol used by the FROM
|
|
|
|
// command to specify that no base image is to be used.
|
|
|
|
NoBaseImageSpecifier string = "scratch"
|
2014-02-24 19:48:14 +00:00
|
|
|
)
|