From 8c3ab546a9769f35e624edb5067be02c7de8ccf6 Mon Sep 17 00:00:00 2001 From: bjoern Date: Thu, 28 Jan 2016 00:39:34 +0100 Subject: add interactive bash to entrypoint --- docker-ep.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker-ep.sh b/docker-ep.sh index 2f949f5..aa8e8a2 100755 --- a/docker-ep.sh +++ b/docker-ep.sh @@ -58,6 +58,7 @@ function usage() { echo "core - starts voctomix gore" echo "gui - starts the voctomix GUI" echo "examples - lists the example scripts" + echo "bash - run interactive bash" echo "scriptname.py - starts the example script named 'scriptname.py' " } @@ -74,6 +75,10 @@ case $1 in core ) startCore ;; + bash ) + shift + bash $@ + ;; * ) runExample $1 ;; -- cgit v1.2.3