Beispiel #1
0
        public bool RemoveManifestByTag(string repository, string tag)
        {
            PSTagAttribute tagAttribute = GetTag(repository, tag);

            return(RemoveManifest(repository, tagAttribute.Attributes.Digest));
        }
Beispiel #2
0
        public PSManifestAttribute UpdateManifestByTag(string repository, string tag, PSChangeableAttribute attribute)
        {
            PSTagAttribute tagAttribute = GetTag(repository, tag);

            return(UpdateManifest(repository, tagAttribute.Attributes.Digest, attribute));
        }