From 489d4dee591d5c7c7cbb91cbc5de7ee29609e5f4 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Thu, 28 May 2015 13:45:06 -0700 Subject: [PATCH] Run update.sh --- registry/README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/registry/README.md b/registry/README.md index 1e63e0dc8..394050f5c 100644 --- a/registry/README.md +++ b/registry/README.md @@ -8,16 +8,20 @@ For more information about this image and its history, please see the [relevant # 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 -### 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 \