From c9f5d1d693d4b0611264b215e0eb9ee88904a9ef Mon Sep 17 00:00:00 2001 From: Benny Date: Thu, 29 Jan 2026 17:06:48 -0600 Subject: [PATCH] Use docker-compose with hyphen --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 3e474f0..54d80d1 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -39,13 +39,13 @@ jobs: cd $APP_DIR # Build and start all services - sudo docker compose up -d --build + sudo docker-compose up -d --build # Wait for database to be ready sleep 10 # Run Prisma migrations inside the API container - sudo docker compose exec -T api npx prisma migrate deploy + sudo docker-compose exec -T api npx prisma migrate deploy - name: Reload Nginx run: sudo systemctl reload nginx \ No newline at end of file