...

Text file src/github.com/google/go-containerregistry/images/dot/index-anatomy.dot

Documentation: github.com/google/go-containerregistry/images/dot

     1digraph {
     2  ordering = out;
     3  compound=true;
     4  rankdir="LR";
     5
     6  tag [label="", shape="circle", width=0.1, style="filled", color="black"];
     7  tag2 [label="", shape="circle", width=0.1, style="filled", color="black"];
     8  tag3 [label="", shape="circle", width=0.1, style="filled", color="black"];
     9  index [shape="note"];
    10  image [shape="note"];
    11  image2 [label="image", shape="note"];
    12
    13  tag -> index [taillabel="latest", tailport=head, labeldistance=2.1, labelangle=108];
    14  tag2 -> image [taillabel="amd64", tailport=head, labeldistance=2.1, labelangle=108];
    15  tag3 -> image2 [taillabel="ppc64le", tailport=head, labeldistance=2.1, labelangle=252];
    16  index -> image;
    17  index -> image2;
    18}

View as plain text