From 28275bb6d9a5fdbc52025f62e7f3314432d26b71 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Fri, 19 Jul 2024 20:15:26 +0200 Subject: [PATCH] Update docker-compose-build.yml (#111) --- .github/workflows/docker-compose-build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-compose-build.yml b/.github/workflows/docker-compose-build.yml index 1047d4dce..ab99a7a15 100644 --- a/.github/workflows/docker-compose-build.yml +++ b/.github/workflows/docker-compose-build.yml @@ -47,11 +47,10 @@ jobs: else echo "Service responded with $http_code" fi - - name: Test if localhost:2525 (Email Service) responds - - name: Test if SmtpService responds + - name: Test if localhost:25 (SmtpService) responds run: | # Test if the service on localhost:25 responds - response=$(curl -s --connect-timeout 5 localhost:2525) + response=$(curl -s --connect-timeout 5 localhost:25) if [ -z "$response" ]; then echo "SmtpService did not respond on port 25. Check if the SmtpService service is running." exit 1