support tag@digest notation

Vendor in the latest HEAd of containers/common to implicitly support the
tag@digest notation for images.  To remain compatible with Docker, the
tag will be stripped off the image reference and is entirely ignored.

Fixes: #6721
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
Valentin Rothberg
2021-05-27 16:13:54 +02:00
parent 59236762ec
commit fb4a0c572e
17 changed files with 161 additions and 30 deletions

View File

@ -3,9 +3,17 @@
package config
func defaultCgroupManager() string {
return "cgroupfs"
return CgroupfsCgroupsManager
}
func defaultEventsLogger() string {
return "file"
}
func defaultLogDriver() string {
return DefaultLogDriver
}
func useSystemd() bool {
return false
}