We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47c3e4 commit 7c364b3Copy full SHA for 7c364b3
.github/workflows/main.yaml
@@ -20,13 +20,11 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
23
- - name: Set up Docker
24
- uses: docker/setup-qemu-action@v2
25
- if: ${{ false }} # Отключаем, если не нужна поддержка ARM
26
-
27
- - name: Set up Docker Compose
28
- uses: docker/setup-buildx-action@v2
29
- if: ${{ false }} # Отключаем, если не нужен Buildx
+ - name: Install Docker Compose
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y docker-compose-plugin
+ docker compose version # Проверка
30
31
- name: Start services
32
run: |
0 commit comments