common.go 292 B

1234567891011
  1. package api
  2. // Common constants for daemon and client.
  3. const (
  4. // DefaultVersion of Current REST API
  5. DefaultVersion string = "1.32"
  6. // NoBaseImageSpecifier is the symbol used by the FROM
  7. // command to specify that no base image is to be used.
  8. NoBaseImageSpecifier string = "scratch"
  9. )