mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-08 18:05:41 +00:00
Also reflect removed/deprecated fields in the compat API. [NO NEW TESTS NEEDED] Signed-off-by: Renovate Bot <bot@renovateapp.com> Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
11 lines
319 B
Go
11 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.43"
|
|
|
|
// NoBaseImageSpecifier is the symbol used by the FROM
|
|
// command to specify that no base image is to be used.
|
|
NoBaseImageSpecifier = "scratch"
|
|
)
|