From ea8985d5b9126f6948a8f362dbe770041691b3f8 Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Mon, 12 Aug 2024 12:24:31 +0100 Subject: [PATCH] Replace docker-compose > docker compose. --- .github/workflows/main.yml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a97f9b45..bb5db886 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v2 - name: Run tests - run: docker-compose run --rm chirpstack-gateway-bridge make test + run: docker compose run --rm chirpstack-gateway-bridge make test dist: needs: test @@ -37,7 +37,7 @@ jobs: aws-region: eu-west-1 - name: Build distributable binaries - run: docker-compose run --rm chirpstack-gateway-bridge make dist + run: docker compose run --rm chirpstack-gateway-bridge make dist - name: Upload binaries to S3 if: startsWith(github.ref, 'refs/tags/v') diff --git a/Makefile b/Makefile index 194070a3..706d892d 100644 --- a/Makefile +++ b/Makefile @@ -41,4 +41,4 @@ serve: build ./build/chirpstack-gateway-bridge run-compose-test: - docker-compose run --rm chirpstack-gateway-bridge make test + docker compose run --rm chirpstack-gateway-bridge make test