1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package v1
- const (
-
- AnnotationCreated = "org.opencontainers.image.created"
-
- AnnotationAuthors = "org.opencontainers.image.authors"
-
- AnnotationURL = "org.opencontainers.image.url"
-
- AnnotationDocumentation = "org.opencontainers.image.documentation"
-
- AnnotationSource = "org.opencontainers.image.source"
-
-
-
- AnnotationVersion = "org.opencontainers.image.version"
-
- AnnotationRevision = "org.opencontainers.image.revision"
-
- AnnotationVendor = "org.opencontainers.image.vendor"
-
- AnnotationLicenses = "org.opencontainers.image.licenses"
-
-
- AnnotationRefName = "org.opencontainers.image.ref.name"
-
- AnnotationTitle = "org.opencontainers.image.title"
-
- AnnotationDescription = "org.opencontainers.image.description"
- )
|