Browse Source

docker comes with compose

knuth 2 years ago
parent
commit
bfd5329363
1 changed files with 1 additions and 3 deletions
  1. 1 3
      .github/workflows/image_builds.yml

+ 1 - 3
.github/workflows/image_builds.yml

@@ -33,13 +33,11 @@ jobs:
         run: |
         run: |
           curl -sSL https://get.docker.com/ | CHANNEL=stable sudo sh
           curl -sSL https://get.docker.com/ | CHANNEL=stable sudo sh
           sudo service docker start
           sudo service docker start
-          sudo curl -L https://github.com/docker/compose/releases/download/v$(curl -Ls https://www.servercow.de/docker-compose/latest.php)/docker-compose-$(uname -s)-$(uname -m) > /usr/local/bin/docker-compose
-          sudo chmod +x /usr/local/bin/docker-compose
       - name: Prepair Image Builds
       - name: Prepair Image Builds
         run: |
         run: |
           cp helper-scripts/docker-compose.override.yml.d/BUILD_FLAGS/docker-compose.override.yml docker-compose.override.yml
           cp helper-scripts/docker-compose.override.yml.d/BUILD_FLAGS/docker-compose.override.yml docker-compose.override.yml
       - name: Build Docker Images
       - name: Build Docker Images
         run: |
         run: |
-          docker-compose build ${image}
+          docker compose build ${image}
         env:
         env:
           image: ${{ matrix.images }}
           image: ${{ matrix.images }}