common.go 319 B

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