Fix: Usar docker-compose en lugar de docker compose
Some checks failed
deploy-meshcentral / deploy (push) Failing after 2s
Some checks failed
deploy-meshcentral / deploy (push) Failing after 2s
El runner de Gitea Actions usa una versión antigua de Docker Compose que requiere el comando docker-compose (con guión).
This commit is contained in:
@@ -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 --project-name $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 --project-name $APP_NAME up -d --remove-orphans --wait
|
||||||
|
|
||||||
- name: Wait for MeshCentral to be ready
|
- name: Wait for MeshCentral to be ready
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user