From b355f93a325f3d48edd4205fb852fb5f953fe38c Mon Sep 17 00:00:00 2001 From: Rafael Zanella Date: Thu, 28 May 2015 14:02:03 -0300 Subject: [PATCH 1/2] Added info about project fork/deprecation --- registry/content.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/registry/content.md b/registry/content.md index 059fee69..20e11aed 100644 --- a/registry/content.md +++ b/registry/content.md @@ -1,6 +1,8 @@ # Docker Registry -See comprehensive documentation on our [GitHub page](https://github.com/docker/docker-registry). +The tags >= 2 refer to the [new registry](https://github.com/docker/distribution). + +Older tags refer to the [deprecated registry](https://github.com/docker/docker-registry). ## Run the Registry From c9c319de198efc60db52199e52eba942c3ebf011 Mon Sep 17 00:00:00 2001 From: Rafael Zanella Date: Thu, 28 May 2015 13:42:46 -0300 Subject: [PATCH 2/2] Modified the 'Quick version' section --- registry/content.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/registry/content.md b/registry/content.md index 20e11aed..707186f4 100644 --- a/registry/content.md +++ b/registry/content.md @@ -6,12 +6,14 @@ Older tags refer to the [deprecated registry](https://github.com/docker/docker-r ## Run the Registry -### Recommended: run the registry docker container - - install docker according to the [following instructions](http://docs.docker.io/installation/#installation) -- run the registry: `docker run -p 5000:5000 registry` -or +### Run the registry docker container: Quick version + +- run the registry: `docker run -p 5000:5000 -v :/tmp/registry-dev registry` +- Modify your docker startup line/script: add "-H tcp://127.0.0.1:2375 -H unix:///var/run/docker.sock --insecure-registry :5000" + +### Recommended: run the registry docker container docker run \ -e SETTINGS_FLAVOR=s3 \