We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28d37d4 + d858089 commit bfc49afCopy full SHA for bfc49af
specs-go/v1/config.go
@@ -14,7 +14,11 @@
14
15
package v1
16
17
-import "time"
+import (
18
+ "time"
19
+
20
+ digest "github.com/opencontainers/go-digest"
21
+)
22
23
// ImageConfig defines the execution parameters which should be used as a base when running a container using an image.
24
type ImageConfig struct {
@@ -52,7 +56,7 @@ type RootFS struct {
52
56
Type string `json:"type"`
53
57
54
58
// DiffIDs is an array of layer content hashes (DiffIDs), in order from bottom-most to top-most.
55
- DiffIDs []string `json:"diff_ids"`
59
+ DiffIDs []digest.Digest `json:"diff_ids"`
60
}
61
62
// History describes the history of a layer.
0 commit comments