Fix: Usar docker compose -p en lugar de --project-name
Some checks failed
deploy-meshcentral / deploy (push) Failing after 3s
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:
@@ -94,10 +94,10 @@ jobs:
|
||||
run: docker pull ghcr.io/ylianst/meshcentral:latest
|
||||
|
||||
- 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
|
||||
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
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user