2018-02-05 16:05:59 -05:00
|
|
|
package api // import "github.com/docker/docker/api"
|
2014-02-24 14:48:14 -05:00
|
|
|
|
2015-03-23 21:30:09 -04:00
|
|
|
// Common constants for daemon and client.
|
2014-02-24 14:48:14 -05:00
|
|
|
const (
|
2016-10-03 14:49:49 -04:00
|
|
|
// DefaultVersion of Current REST API
|
2018-02-21 09:21:48 -05:00
|
|
|
DefaultVersion string = "1.37"
|
2015-06-17 17:57:32 -04:00
|
|
|
|
2015-12-31 08:57:58 -05: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 14:48:14 -05:00
|
|
|
)
|