Skip to content
This repository was archived by the owner on Apr 21, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions rc1.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ All labels are OPTIONAL, however if present MUST be prefixed with the namespace
| `vcs-url` | `org.label-schema.vcs-url = "https://github.com/nginx/nginx"` | URL for the source code under version control from which this container image was built. |
| `vcs-ref` | `org.label-schema.vcs-ref = "279FA63"` | Identifier for the version of the source code from which this image was built. For example if the version control system is git this is the SHA. |
| `vendor` | `org.label-schema.vendor = "Stark Industries"` | The organization that produces this image. |
| `vendor-name` | `org.label-schema.vendor-name = "ACME Industries"` | The name of the vendor that owns, authored or supports this image. |
| `vendor-email` | `org.label-schema.vendor-email = "support@example.com"` | The email address of vendor that owns, authored or supports this image. |
| `vendor-website` | `org.label-schema.vendor-website = "http://www.example.com"` | The website url of vendor that owns, authored or supports this image. |
| `version` | `org.label-schema.version = "1.2.3"` `org.label-schema.version = "Beta4.2"` `org.label-schema.version = "1.2.2-dirty"` `org.label-schema.version = "my-test"` | Release identifier for the contents of the image. This is entirely up to the user and could be a numeric version number like 1.2.3, or a text label.<br> The version MAY match a label or tag in the source code repository.<br> You should make sure that only images that exactly reflect a version of code should have that version label. If Julia finds a version 0.7.1 in a repository she SHOULD be able to infer this matches version 0.7.1 of the associated code (and in particular, not 0.7.1 plus some later commits).<br> You SHOULD omit the version label, or use a marker like "dirty" or "test" to indicate when a container image does not match a labelled / tagged version of the code. |
| `schema-version` | `org.label-schema.schema-version = "1.0"` | This label SHOULD be present to indicate the version of Label Schema in use. |
| `docker.cmd` | `org.label-schema.docker.cmd= "docker run -d -p 5000:5000 -v config.json:/etc/config.json myapp"` | How to run a container based on the image under the Docker runtime. |
Expand Down