This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Add authors/maintainers to the specification #23
Comments
MAINTAINER is officially deprecated in dockerfiles. https://docs.docker.com/engine/reference/builder/#maintainer-deprecated They point to implementation in labels. |
lpalgarvio
changed the title
Add authors to the specification
Add authors/maintainers to the specification
Mar 5, 2017
But we can implement something like this:
|
Added pull request #25:
|
Similarly, vendor could be expanded to allow:
This change wouldn't break existing org.label-schema.vendor implementations. |
#36 added for vendor |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello
We have Vendor, but Authors and/or Maintainers is missing in the specification.
Can we take a look at what's done in PHP Composer?
https://getcomposer.org/doc/04-schema.md#authors
`authors#
The authors of the package. This is an array of objects.
Each author object can have following properties:
An example:
{
"authors": [
{
"name": "Nils Adermann",
"email": "[email protected]",
"homepage": "http://www.naderman.de",
"role": "Developer"
},
{
"name": "Jordi Boggiano",
"email": "[email protected]",
"homepage": "http://seld.be",
"role": "Developer"
}
]
}`
The text was updated successfully, but these errors were encountered: