From 9511e97d3457f8adee14694e179e79c170162f55 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sun, 13 Apr 2014 17:23:01 -0400 Subject: [PATCH] Work around 'docker run' waiting for input * https://github.com/dotcloud/docker/issues/5185 --- launcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher b/launcher index 07f5f79..76c03a5 100755 --- a/launcher +++ b/launcher @@ -66,7 +66,7 @@ prereqs() { fi # 4. able to attach stderr / out / tty - test=`docker run -i --rm -a stdin -a stdout -a stderr $image echo working` + test=`docker run -i --rm -a stdout -a stderr $image echo working` if [[ "$test" =~ "working" ]] ; then : ; else echo "Your Docker installation is not working correctly" echo -- 2.25.1