From f9d80712d9417feadd63cb71c0c7825c4e9f9fd4 Mon Sep 17 00:00:00 2001 From: unclejack Date: Wed, 22 Oct 2014 11:15:57 +0300 Subject: [PATCH] contrib/install.sh: remove pull of hello-world This removes the pull of the hello-world image from install.sh to address privacy concerns. Docker-DCO-1.1-Signed-off-by: Cristian Staretu (github: unclejack) --- hack/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/install.sh b/hack/install.sh index 9652e4672d..b7e97555ae 100755 --- a/hack/install.sh +++ b/hack/install.sh @@ -85,7 +85,7 @@ case "$lsb_dist" in if command_exists docker && [ -e /var/run/docker.sock ]; then ( set -x - $sh_c 'docker run --rm hello-world' + $sh_c 'docker version' ) || true fi your_user=your-user @@ -162,7 +162,7 @@ case "$lsb_dist" in if command_exists docker && [ -e /var/run/docker.sock ]; then ( set -x - $sh_c 'docker run --rm hello-world' + $sh_c 'docker version' ) || true fi your_user=your-user