Browse code

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 <cristian.staretu@gmail.com> (github: unclejack)

unclejack authored on 2014/10/22 17:15:57
Showing 1 changed files
... ...
@@ -85,7 +85,7 @@ case "$lsb_dist" in
85 85
 		if command_exists docker && [ -e /var/run/docker.sock ]; then
86 86
 			(
87 87
 				set -x
88
-				$sh_c 'docker run --rm hello-world'
88
+				$sh_c 'docker version'
89 89
 			) || true
90 90
 		fi
91 91
 		your_user=your-user
... ...
@@ -162,7 +162,7 @@ case "$lsb_dist" in
162 162
 		if command_exists docker && [ -e /var/run/docker.sock ]; then
163 163
 			(
164 164
 				set -x
165
-				$sh_c 'docker run --rm hello-world'
165
+				$sh_c 'docker version'
166 166
 			) || true
167 167
 		fi
168 168
 		your_user=your-user