Commit holds the Git-commit (SHA1) that a binary was built from, as reported in the version-string of external tools, such as containerd, or runC. Commit

interface Commit {
    Expected?: string;
    ID?: string;
}

Properties

Properties

Expected?: string

Commit ID of external tool expected by dockerd as set at build time.

ID?: string

Actual commit ID of external tool.