Use docker-compose with hyphen
All checks were successful
Deploy / deploy (push) Successful in 45s

This commit is contained in:
Benny
2026-01-29 17:06:48 -06:00
parent d2472335a2
commit c9f5d1d693

View File

@@ -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