Fix: Usar docker compose -p en lugar de --project-name
Some checks failed
deploy-meshcentral / deploy (push) Failing after 3s

Cambiar a la sintaxis corta -p que es compatible con docker compose v2
This commit is contained in:
2025-10-31 18:45:14 -06:00
parent a3a255b05d
commit 2c721d5f76

View File

@@ -94,10 +94,10 @@ jobs:
run: docker pull ghcr.io/ylianst/meshcentral:latest run: docker pull ghcr.io/ylianst/meshcentral:latest
- name: Clean up existing stack - name: Clean up existing stack
run: docker-compose --project-name $APP_NAME down || true run: docker compose -p $APP_NAME down || true
- name: Start MeshCentral stack - name: Start MeshCentral stack
run: docker-compose --project-name $APP_NAME up -d --remove-orphans --wait run: docker compose -p $APP_NAME up -d --remove-orphans --wait
- name: Wait for MeshCentral to be ready - name: Wait for MeshCentral to be ready
run: | run: |