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
|
2022-07-12 08:35:48 +00:00
|
|
|
DefaultVersion = "1.43"
|
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.
|
2018-05-19 11:38:54 +00:00
|
|
|
NoBaseImageSpecifier = "scratch"
|
2014-02-24 19:48:14 +00:00
|
|
|
)
|