From d556b585e139d5164f06ca1e000133384f6602dd Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Wed, 3 Sep 2025 23:34:38 +0200 Subject: [PATCH] Comment out Docker build command in deployment workflow --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 9f1dddd..8cc35fa 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: # Use the host's Docker to build the image defined in docker-compose.yml # The '--no-cache' flag ensures it picks up any changes from your repository # The 'up -d' command will recreate only the services that have changed - docker compose build --no-cache + # docker compose build docker compose up -d # Clean up any old, unused images to save disk space