2018-02-05 21:05:59 +00:00
|
|
|
package api // import "github.com/docker/docker/api"
|
2014-02-24 19:48:14 +00:00
|
|
|
|
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
|
2018-02-21 14:21:48 +00:00
|
|
|
DefaultVersion string = "1.37"
|
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
|
|
|
)
|