From 991aef041742a64df3742836c8951736c2e708f2 Mon Sep 17 00:00:00 2001 From: Abdulbari Date: Fri, 29 Aug 2025 19:09:11 +0300 Subject: [PATCH] Update sgeupdated pipeline v5 working on updating the docker --- .gitea/workflows/sgeupdated.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/sgeupdated.yml b/.gitea/workflows/sgeupdated.yml index c15d6b9..ce0ec2d 100644 --- a/.gitea/workflows/sgeupdated.yml +++ b/.gitea/workflows/sgeupdated.yml @@ -37,7 +37,8 @@ jobs: cd sgeUpdated-backend mvn clean install cd .. - docker compose up -d --build --force-recreate backend + docker compose build --no-cache backend + docker compose up -d --force-recreate backend fi # --- Frontend --- @@ -50,5 +51,6 @@ jobs: fi npm run build cd .. - docker compose up -d --build --force-recreate frontend + docker compose build --no-cache frontend + docker compose up -d --force-recreate frontend fi