forked from TrueCloudLab/distribution
cf9b4ab5e9
Adding new material Adding in template chomped in error Cover install/deploy in README Adding in Stephen's comments Fixing you tabs! Updating with commentary from pr Updating with last minute comments Signed-off-by: Mary Anthony <mary@docker.com>
36 lines
No EOL
990 B
Markdown
36 lines
No EOL
990 B
Markdown
# Glossary
|
|
|
|
This page contains distribution related terms. For a complete Docker glossary,
|
|
see the [glossary in the full documentation set](http://docs.docker.com/reference/glossary/).
|
|
|
|
<dl>
|
|
<dt>Blob</dt>
|
|
<dd>
|
|
The primary unit of registry storage. A string of bytes identified by
|
|
content-address, known as a _digest_.
|
|
</dd>
|
|
|
|
<dt>Image</dt>
|
|
<dd>An image is a collection of content from which a docker container can be created.</dd>
|
|
|
|
<dt>Layer</dt>
|
|
<dd>
|
|
A tar file representing the partial content of a filesystem. Several
|
|
layers can be "stacked" to make up the root filesystem.
|
|
</dd>
|
|
|
|
<dt>Manifest</dt>
|
|
<dd>Describes a collection layers that make up an image.</dd>
|
|
|
|
<dt>Registry</dt>
|
|
<dd>A registry is a collection of repositories.</dd>
|
|
|
|
<dt>Repository</dt>
|
|
<dd>
|
|
A repository is a collection of docker images, made up of manifests, tags
|
|
and layers. The base unit of these components are blobs.
|
|
</dd>
|
|
|
|
<dt>Tag</dt>
|
|
<dd>Tag provides a common name to an image.</dd>
|
|
</dl> |