From 65459d55ac341703d23f712d4f4503d841ead524 Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Wed, 30 Dec 2020 13:49:15 +0100
Subject: [PATCH] gitlab-ci-cd/drupal#1 Testing

---
 test-and-deploy.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test-and-deploy.yml b/test-and-deploy.yml
index c0d0f28..8fcdd3d 100644
--- a/test-and-deploy.yml
+++ b/test-and-deploy.yml
@@ -55,6 +55,7 @@ stages:
   variables:
     GIT_STRATEGY: none
   script: |
+    docker container ls --all -q -f name=^${COMPOSE_PROJECT_NAME}_mariadb_1$
     DBREQUIRED="no"
     if [[ "$CI_COMMIT_REF_NAME" == "master" ]]; then
       DBREQUIRED="yes"
@@ -68,7 +69,7 @@ stages:
         DBREQUIRED="yes"
       else
         TABLES=$(docker exec ${COMPOSE_PROJECT_NAME}_mariadb_1 mysql -u drupal --password=drupal -e "show tables;" drupal 2>/dev/null|grep users)
-        if [[ ! -n ${ID} ]]; then
+        if [[ ! -n ${TABLES} ]]; then
           DBREQUIRED="yes"
         fi
       fi
-- 
GitLab