mirror of
https://github.com/vbatts/talks.git
synced 2024-12-26 08:36:31 +00:00
OSSNA2023: Container Registries, not just for containers
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
59de6db595
commit
76ef19508f
6 changed files with 28 additions and 0 deletions
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
img/%.png: img/%.dot
|
||||||
|
dot -Tpng $^ > $@
|
||||||
|
|
||||||
|
registry:
|
||||||
|
PORT=1234 crane registry serve
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
Open Source Summit NA 2023 (Vancouver)
|
||||||
|
|
||||||
|
[Schedule Link](https://sched.co/1K57C)
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
digraph G {
|
||||||
|
{
|
||||||
|
imageIndex [shape=note, label="Image Index\n<<optional>>\napplication/vnd.oci.image.index.v1+json\napplication/vnd.docker.distribution.manifest.list.v2+json"]
|
||||||
|
{
|
||||||
|
rank=same
|
||||||
|
manifest [shape=note, label="Image manifest\napplication/vnd.oci.image.manifest.v1+json\napplication/vnd.docker.distribution.manifest.v2+json"]
|
||||||
|
}
|
||||||
|
config [shape=note, label="Image config JSON\napplication/vnd.oci.image.config.v1+json\napplication/vnd.docker.container.image.v1+json"]
|
||||||
|
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\napplication/vnd.docker.image.rootfs.diff.tar.gzip"]
|
||||||
|
}
|
||||||
|
|
||||||
|
imageIndex -> imageIndex [label="1..*"]
|
||||||
|
imageIndex -> manifest [label="1..*"]
|
||||||
|
manifest -> config [label="1..1"]
|
||||||
|
manifest -> layer [label="1..*"]
|
||||||
|
manifest -> manifest [label="0..1"];
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 64 KiB |
Loading…
Reference in a new issue