From 13eeeb6b0fba0bc3340b9f8aa8a4830454d8146e Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Wed, 3 Sep 2025 23:31:25 +0200 Subject: [PATCH] Fix Docker command syntax in deployment workflow --- .gitea/workflows/deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index d1b5ab1..d898a65 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -19,7 +19,8 @@ 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 up -d --build --no-cache - + docker-compose build --no-cache + docker-compose up -d + # Clean up any old, unused images to save disk space docker image prune -f \ No newline at end of file