From aed6cb22b506583b669a63873e79d57d569992f4 Mon Sep 17 00:00:00 2001 From: Jim Galasyn Date: Wed, 24 May 2017 14:29:08 -0700 Subject: [PATCH] Reverted (#3393) --- docs/recipes/mirror.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/docs/recipes/mirror.md b/docs/recipes/mirror.md index 77049a5eb..021b7d0bd 100644 --- a/docs/recipes/mirror.md +++ b/docs/recipes/mirror.md @@ -100,22 +100,3 @@ to make the change persistent. ``` Save the file and restart Docker for the change to take effect. - -## Use case: the China registry mirror - -The URL of the registry mirror for China is `registry.docker-cn.com`. You can pull -images from this mirror just like you do for other registries by specifying -the full path, including the registry, in your `docker pull` command, for example: - -```bash -$ docker pull registry.docker-cn.com/library/ubuntu -``` - -Or you can add "https://registry.docker-cn.com" to the `registry-mirrors` array -in `/etc/docker/daemon.json` to pull from the China registry mirror by default. - -```json -{ - "registry-mirrors": ["https://registry.docker-cn.com"] -} -```