update to version 9.9.2
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
2023-10-29 22:38:24 +02:00
parent e32f32f97c
commit 8611a4bcb7
17 changed files with 329 additions and 16 deletions

View File

@@ -116,7 +116,7 @@ sanity_check_image() {
cd $test_compose_path
export PORT=$port
export IMAGE=$1
docker-compose up -d sonarqube
docker compose up -d sonarqube
if wait_for_sonarqube_dce "$image"; then
info "$image-app: OK !"
result=ok
@@ -126,7 +126,7 @@ sanity_check_image() {
fi
info "$image-app: stopping container stack"
docker-compose stop
docker compose stop
[[ $result == ok ]]
fi