summaryrefslogtreecommitdiff
path: root/api/common.go
blob: 37e553d4183d77893e90962015af12678487ba7d (plain)
1
2
3
4
5
6
7
8
9
10
11
package api // import "github.com/docker/docker/api"

// Common constants for daemon and client.
const (
	// DefaultVersion of Current REST API
	DefaultVersion = "1.44"

	// NoBaseImageSpecifier is the symbol used by the FROM
	// command to specify that no base image is to be used.
	NoBaseImageSpecifier = "scratch"
)