mirror of
https://gitea.com/gitea/runner.git
synced 2026-08-15 08:23:05 +00:00
ca648a37c8
* Upgrade docker to v19.03.7 * go mod vendor * golangci-lint 1.23.8
12 lines
319 B
Go
12 lines
319 B
Go
package api // import "github.com/docker/docker/api"
|
|
|
|
// Common constants for daemon and client.
|
|
const (
|
|
// DefaultVersion of Current REST API
|
|
DefaultVersion = "1.40"
|
|
|
|
// NoBaseImageSpecifier is the symbol used by the FROM
|
|
// command to specify that no base image is to be used.
|
|
NoBaseImageSpecifier = "scratch"
|
|
)
|