You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spec.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ These error codes are OPTIONAL and clients SHOULD NOT depend on them.
61
61
Several terms are used frequently in this document and warrant basic definitions:
62
62
63
63
-**Registry**: a service that handles the required APIs defined in this specification
64
+
-**Repository**: a scope for API calls on a registry for a collection of content (including manifests, blobs, and tags).
64
65
-**Client**: a tool that communicates with Registries
65
66
-**Push**: the act of uploading blobs and manifests to a registry
66
67
-**Pull**: the act of downloading blobs and manifests from a registry
@@ -175,7 +176,7 @@ If the digest does differ, it MAY be the case that the hashing algorithms used d
175
176
See [Content Digests](https://github.com/opencontainers/image-spec/blob/v1.0.1/descriptor.md#digests) <sup>[apdx-3](#appendix)</sup> for information on how to detect the hashing algorithm in use.
176
177
Most clients MAY ignore the value, but if it is used, the client MUST verify the value against the uploaded blob data.
177
178
178
-
If the manifest is not found in the registry, the response code MUST be `404 Not Found`.
179
+
If the manifest is not found in the repository, the response code MUST be `404 Not Found`.
179
180
180
181
##### Pulling blobs
181
182
@@ -188,7 +189,7 @@ A GET request to an existing blob URL MUST provide the expected blob, with a res
188
189
A successful response SHOULD contain the digest of the uploaded blob in the header `Docker-Content-Digest`.
189
190
If present, the value of this header MUST be a digest matching that of the response body.
190
191
191
-
If the blob is not found in the registry, the response code MUST be `404 Not Found`.
192
+
If the blob is not found in the repository, the response code MUST be `404 Not Found`.
192
193
193
194
A registry SHOULD support the `Range` request header in accordance with [RFC 9110](https://www.rfc-editor.org/rfc/rfc9110.html#name-range-requests).
194
195
@@ -204,7 +205,7 @@ A HEAD request to an existing blob or manifest URL MUST return `200 OK`.
204
205
A successful response SHOULD contain the digest of the uploaded blob in the header `Docker-Content-Digest`.
205
206
A successful response SHOULD contain the size in bytes of the uploaded blob in the header `Content-Length`.
206
207
207
-
If the blob or manifest is not found in the registry, the response code MUST be `404 Not Found`.
208
+
If the blob or manifest is not found in the repository, the response code MUST be `404 Not Found`.
0 commit comments