Fix Docker Compose command syntax
Some checks failed
CI/CD Pipeline (Simple) / test-and-build (push) Has been skipped
CI/CD Pipeline (Simple) / production (push) Has been cancelled

- Replace deprecated 'docker-compose' with modern 'docker compose'
- Update all workflow files to use new syntax
- Update documentation with correct commands
- Fixes 'command not found' error in CI/CD pipeline
- Compatible with Docker Compose V2 and newer versions
This commit is contained in:
2025-09-13 00:35:02 +02:00
parent 4ccb2b146d
commit 72456aa7a0
2 changed files with 22 additions and 22 deletions

View File

@@ -81,7 +81,7 @@ jobs:
- name: Stop existing services
run: |
docker-compose down || true
docker compose down || true
- name: Verify secrets and variables before deployment
run: |
@@ -119,7 +119,7 @@ jobs:
- name: Start services with Docker Compose
run: |
docker-compose up -d
docker compose up -d
env:
NODE_ENV: ${{ vars.NODE_ENV }}
LOG_LEVEL: ${{ vars.LOG_LEVEL }}