From 71b8d6870868fb86b00be9e9fbf2bd7cd2a0c262 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sun, 24 Mar 2013 14:13:08 -0700 Subject: [PATCH] `docker import` doesn't download an image ``` $ docker import base Downloading from http://base Error: Get http://base: lookup base: no such host ``` only `docker pull` does: ``` $ docker pull base Pulling base... Pulling repo: https://registry.docker.io/v1/users/base Pull completed ``` Upstream-commit: 55c89087561e98eb2d4ce46b9d65c4e31f9297d8 Component: engine --- components/engine/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/README.md b/components/engine/README.md index 851ddb4fce..c955a1dcf2 100644 --- a/components/engine/README.md +++ b/components/engine/README.md @@ -132,7 +132,7 @@ Running an interactive shell ```bash # Download a base image -docker import base +docker pull base # Run an interactive shell in the base image, # allocate a tty, attach stdin and stdout