diff --git a/start.sh b/start.sh
index 770cd7935f39560037d3bceb0c9f283f4180c312..948e7507d1c59afeb82dd119098930eca1c7e9f1 100755
--- a/start.sh
+++ b/start.sh
@@ -30,6 +30,7 @@ if [[ ! -n "$EXISTING" ]]; then
   echo "Lets start a new project here ..."
   echo ""
   echo "Options to start:"
+  echo "    0   none: start with an empty container"
   echo "    1   LakeDrops Drupal 8 project template"
   echo "    2   Drupal's community project template"
   echo "    3   Existing git repository"
@@ -39,6 +40,9 @@ if [[ ! -n "$EXISTING" ]]; then
   while true; do
       read -p "Choose an option: " OPTION
       case ${OPTION} in
+          0 )
+            break
+            ;;
 
           1 )
             PROJECT="lakedrops/d8-project"