summaryrefslogtreecommitdiff
path: root/docs/sources/reference/api/registry_api.md
diff options
context:
space:
mode:
authorFred Lifton <fred.lifton@docker.com>2014-08-27 09:05:02 -0700
committerFred Lifton <fred.lifton@docker.com>2014-08-27 09:05:02 -0700
commitaba575c7546ba7d2914f0c3b8b3450667b3959ac (patch)
treed0158f0eab4b9710815c1a87e2ef3699e5185205 /docs/sources/reference/api/registry_api.md
parent4b54484843eacf6ce57d2fc16e6aacc70d964041 (diff)
parent7565cb309988345f9ed9daba87052f2bba116033 (diff)
downloaddocker-docs-1.1.tar.gz
Merge pull request #7755 from SvenDowideit/post-1.1.2-docs-update-1docs-1.1
Post 1.1.2 docs update 1
Diffstat (limited to 'docs/sources/reference/api/registry_api.md')
-rw-r--r--docs/sources/reference/api/registry_api.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/sources/reference/api/registry_api.md b/docs/sources/reference/api/registry_api.md
index a3d4f23d66..49776b9b18 100644
--- a/docs/sources/reference/api/registry_api.md
+++ b/docs/sources/reference/api/registry_api.md
@@ -67,6 +67,8 @@ The latter would only require two new commands in docker, e.g.,
(and optionally doing consistency checks). Authentication and authorization
are then delegated to SSH (e.g., with public keys).
+The default namespace for a private repository is `library`.
+
# Endpoints
## Images
@@ -305,7 +307,7 @@ Get all of the tags for the given repo.
**Example Request**:
- GET /v1/repositories/foo/bar/tags HTTP/1.1
+ GET /v1/repositories/reynholm/help-system-server/tags HTTP/1.1
Host: registry-1.docker.io
Accept: application/json
Content-Type: application/json
@@ -341,7 +343,7 @@ Get a tag for the given repo.
**Example Request**:
- GET /v1/repositories/foo/bar/tags/latest HTTP/1.1
+ GET /v1/repositories/reynholm/help-system-server/tags/latest HTTP/1.1
Host: registry-1.docker.io
Accept: application/json
Content-Type: application/json
@@ -375,7 +377,7 @@ Delete the tag for the repo
**Example Request**:
- DELETE /v1/repositories/foo/bar/tags/latest HTTP/1.1
+ DELETE /v1/repositories/reynholm/help-system-server/tags/latest HTTP/1.1
Host: registry-1.docker.io
Accept: application/json
Content-Type: application/json
@@ -408,7 +410,7 @@ Put a tag for the given repo.
**Example Request**:
- PUT /v1/repositories/foo/bar/tags/latest HTTP/1.1
+ PUT /v1/repositories/reynholm/help-system-server/tags/latest HTTP/1.1
Host: registry-1.docker.io
Accept: application/json
Content-Type: application/json
@@ -446,7 +448,7 @@ Delete a repository
**Example Request**:
- DELETE /v1/repositories/foo/bar/ HTTP/1.1
+ DELETE /v1/repositories/reynholm/help-system-server/ HTTP/1.1
Host: registry-1.docker.io
Accept: application/json
Content-Type: application/json