We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7f43cb4 + 73f386c commit b5ec432Copy full SHA for b5ec432
specs-go/v1/layout.go
@@ -15,10 +15,14 @@
15
package v1
16
17
const (
18
- // ImageLayoutFile is the file name of oci image layout file
+ // ImageLayoutFile is the file name containing ImageLayout in an OCI Image Layout
19
ImageLayoutFile = "oci-layout"
20
// ImageLayoutVersion is the version of ImageLayout
21
ImageLayoutVersion = "1.0.0"
22
+ // ImageIndexFile is the file name of the entry point for references and descriptors in an OCI Image Layout
23
+ ImageIndexFile = "index.json"
24
+ // ImageBlobsDir is the directory name containing content addressable blobs in an OCI Image Layout
25
+ ImageBlobsDir = "blobs"
26
)
27
28
// ImageLayout is the structure in the "oci-layout" file, found in the root
0 commit comments