Skip to content

Commit 4df8887

Browse files
authored
Merge pull request #957 from sajayantony/fix-docs
docs: Added artifact.md to docs
2 parents 515e298 + 0a97fe7 commit 4df8887

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ DOC_FILES := \
3030
descriptor.md \
3131
image-layout.md \
3232
manifest.md \
33+
artifact.md \
3334
image-index.md \
3435
layer.md \
3536
config.md \

img/media-types.dot

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
digraph G {
22
{
33
imageIndex [shape=note, label="Image Index\n<<optional>>\napplication/vnd.oci.image.index.v1+json"]
4-
manifest [shape=note, label="Image manifest\napplication/vnd.oci.image.manifest.v1+json"]
5-
config [shape=note, label="Image JSON\napplication/vnd.oci.image.config.v1+json"]
4+
{
5+
rank=same
6+
manifest [shape=note, label="Image manifest\napplication/vnd.oci.image.manifest.v1+json"]
7+
artifact [shape=note, label="Artifact Manifest\napplication/vnd.oci.artifact.manifest.v1+json"]
8+
}
9+
config [shape=note, label="Image config JSON\napplication/vnd.oci.image.config.v1+json"]
610
layer [shape=note, label="Layer tar archive\napplication/vnd.oci.image.layer.v1.tar\napplication/vnd.oci.image.layer.v1.tar+gzip\napplication/vnd.oci.image.layer.nondistributable.v1.tar\napplication/vnd.oci.image.layer.nondistributable.v1.tar+gzip"]
711
}
812

913
imageIndex -> imageIndex [label="1..*"]
1014
imageIndex -> manifest [label="1..*"]
1115
manifest -> config [label="1..1"]
1216
manifest -> layer [label="1..*"]
17+
artifact -> manifest [label="0..1"] [constraint = false];
18+
artifact -> artifact [label="0..1"];
19+
manifest -> manifest [label="0..1"];
20+
artifact -> imageIndex [label="0..1"]
21+
artifact -> layer[label="0..*"]
1322
}

img/media-types.png

13.3 KB
Loading

spec.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The goal of this specification is to enable the creation of interoperable tools
1717
- [Image Index](image-index.md)
1818
- [Filesystem Layers](layer.md)
1919
- [Image Configuration](config.md)
20+
- [Artifact Manifest](artifact.md)
2021
- [Annotations](annotations.md)
2122
- [Conversion](conversion.md)
2223
- [Considerations](considerations.md)

0 commit comments

Comments
 (0)