From efa21e264a497cb2b5edf7a92d28e6a019a4af75 Mon Sep 17 00:00:00 2001 From: kek20009 Date: Thu, 31 Oct 2024 15:06:05 -0400 Subject: [PATCH] Using a different container name --- .github/workflows/ms5.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ms5.yaml b/.github/workflows/ms5.yaml index aea08a8..cdbff47 100644 --- a/.github/workflows/ms5.yaml +++ b/.github/workflows/ms5.yaml @@ -44,12 +44,12 @@ jobs: docker stop api-container || true # Stop if running, ignore if not sleep 10 docker rm api-container || true # Remove if exists, ignore if not - sleep 10 + sleep 1 #Start API Container - name: Start API Container run: | - docker run -d -p 5000:5001 --name api-container api-image # Start container on port 5000 + docker run -d -p 5000:5000 --name sus_container api-image # Start container on port 5000 #Run all Python tests in the directory - name: Run all Python tests in directory