mirror of
https://github.com/containers/skopeo.git
synced 2025-11-02 18:38:59 +00:00
20 lines
417 B
Go
20 lines
417 B
Go
package types
|
|
|
|
import (
|
|
containerTypes "github.com/docker/engine-api/types/container"
|
|
)
|
|
|
|
type ImageInspect struct {
|
|
Tag string
|
|
Digest string
|
|
RepoTags []string
|
|
Comment string
|
|
Created string
|
|
ContainerConfig *containerTypes.Config
|
|
DockerVersion string
|
|
Author string
|
|
Config *containerTypes.Config
|
|
Architecture string
|
|
Os string
|
|
}
|