diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f0b7f54283c5e7da8ffb5a081d1f068cdcded0e5..96f37834e120018fa59871bd55e197162f8ff40a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,7 +5,7 @@ include:
 
 variables:
   VERSION: ${CI_COMMIT_TAG}
-  CI_VERSION: v2.1.0
+  CI_VERSION: v2.1.1
 
 before_script:
   - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
diff --git a/run/scripts/start b/run/scripts/start
index e5b580db45e35ff450e3aaace8554b0425a1e4fa..c49a7a0e59763f6f016ba4723438cf1b32328a5e 100755
--- a/run/scripts/start
+++ b/run/scripts/start
@@ -4,7 +4,7 @@ function getConfig() {
   if [[ ! -n ${PHP_VERSION} ]]; then
     while true; do
       DEFAULT=8.1
-      read -p "WhIich PHP version is your project using [7.4, 8.0, 8.1, 8.2]? " VALUE
+      read -p "Which PHP version is your project using [7.4, 8.0, 8.1, 8.2]? " VALUE
       if [[ "x$VALUE" == "x" ]]; then
         PHP_VERSION=$DEFAULT
       else