From b5dff5b0291f2d1249bdad1c64b313bd778aef96 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=98=A4=ED=98=95=EC=84=9D/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Thu, 25 Oct 2018 17:22:16 +0900 Subject: [PATCH] Fix docker-shell command bug (#3336) Need docker option -it for interactive Signed-off-by: Hyeongseok Oh --- scripts/command/docker-shell | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/command/docker-shell b/scripts/command/docker-shell index 8549d20..9f24c36 100755 --- a/scripts/command/docker-shell +++ b/scripts/command/docker-shell @@ -2,6 +2,7 @@ source "${NNFW_SCRIPT_PATH}/docker.configuration" +DOCKER_RUN_OPTS+=" -it" docker run $DOCKER_RUN_OPTS $DOCKER_ENV_VARS $DOCKER_VOLUMES $DOCKER_IMAGE_NAME "/bin/bash" EXITCODE=$? -- 2.7.4