2015-06-08 00:58:53 +00:00
<!-- [metadata]>
+++
2015-11-20 02:21:03 +00:00
draft = true
2015-06-08 00:58:53 +00:00
+++
<![end-metadata]-->
2015-06-01 03:08:48 +00:00
2015-03-03 07:33:02 +00:00
# Glossary
2015-06-01 03:08:48 +00:00
This page contains definitions for distribution related terms.
2015-03-03 07:33:02 +00:00
< dl >
2015-06-01 03:08:48 +00:00
< dt id = "blob" > < h4 > Blob< / h4 > < / dt >
2015-03-03 07:33:02 +00:00
< dd >
2015-06-01 03:08:48 +00:00
< blockquote > A blob is any kind of content that is stored by a Registry under a content-addressable identifier (a "digest").< / blockquote >
< p >
< a href = "#layer" > Layers< / a > are a good example of "blobs".
< / p >
2015-03-03 07:33:02 +00:00
< / dd >
2015-06-01 03:08:48 +00:00
< dt id = "image" > < h4 > Image< / h4 > < / dt >
< dd >
< blockquote > An image is a named set of immutable data from which a Docker container can be created.< / blockquote >
< p >
An image is represented by a json file called a < a href = "#manifest" > manifest< / a > , and is conceptually a set of < a hred = "#layer" > layers< / a > .
Image names indicate the location where they can be pulled from and pushed to, as they usually start with a < a href = "#registry" > registry< / a > domain name and port.
< / p >
< / dd >
2015-03-03 07:33:02 +00:00
2015-06-01 03:08:48 +00:00
< dt id = "layer" > < h4 > Layer< / h4 > < / dt >
2015-03-03 07:33:02 +00:00
< dd >
2015-06-01 03:08:48 +00:00
< blockquote > A layer is a tar archive bundling partial content from a filesystem.< / blockquote >
< p >
Layers from an < a href = "#image" > image< / a > are usually extracted in order on top of each other to make up a root filesystem from which containers run out.
< / p >
2015-03-03 07:33:02 +00:00
< / dd >
2015-06-01 03:08:48 +00:00
< dt id = "manifest" > < h4 > Manifest< / h4 > < / dt >
< dd > < blockquote > A manifest is the JSON representation of an image.< / blockquote > < / dd >
2015-03-03 07:33:02 +00:00
2015-06-01 03:08:48 +00:00
< dt id = "namespace" > < h4 > Namespace< / h4 > < / dt >
< dd > < blockquote > A namespace is a collection of repositories with a common name prefix.< / blockquote >
< p >
The namespace with an empty prefix is considered the Global Namespace.
< / p >
< / dd >
< dt id = "registry" > < h4 > Registry< / h4 > < / dt >
< dd > < blockquote > A registry is a service that let you store and deliver < a href = "#images" > images< / a > .< / blockquote >
< / dd >
2015-03-03 07:33:02 +00:00
2015-06-01 03:08:48 +00:00
< dt id = "registry" > < h4 > Repository< / h4 > < / dt >
2015-03-03 07:33:02 +00:00
< dd >
2015-06-01 03:08:48 +00:00
< blockquote > A repository is a set of data containing all versions of a given image.< / blockquote >
2015-03-03 07:33:02 +00:00
< / dd >
2015-06-01 03:08:48 +00:00
< dt id = "scope" > < h4 > Scope< / h4 > < / dt >
< dd > < blockquote > A scope is the portion of a namespace onto which a given authorization token is granted.< / blockquote > < / dd >
2015-04-10 02:21:33 +00:00
2015-06-01 03:08:48 +00:00
< dt id = "tag" > < h4 > Tag< / h4 > < / dt >
< dd > < blockquote > A tag is conceptually a "version" of a < a href = "#image" > named image< / a > .< / blockquote >
< p >
Example: `docker pull myimage:latest` instructs docker to pull the image "myimage" in version "latest".
< / p >
< / dd >
2015-04-10 02:21:33 +00:00
< / dl >