Skip to content

Commit ea8985d

Browse files
committed
Replace docker-compose > docker compose.
1 parent d001e55 commit ea8985d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v2
1717
-
1818
name: Run tests
19-
run: docker-compose run --rm chirpstack-gateway-bridge make test
19+
run: docker compose run --rm chirpstack-gateway-bridge make test
2020

2121
dist:
2222
needs: test
@@ -37,7 +37,7 @@ jobs:
3737
aws-region: eu-west-1
3838
-
3939
name: Build distributable binaries
40-
run: docker-compose run --rm chirpstack-gateway-bridge make dist
40+
run: docker compose run --rm chirpstack-gateway-bridge make dist
4141
-
4242
name: Upload binaries to S3
4343
if: startsWith(github.ref, 'refs/tags/v')

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ serve: build
4141
./build/chirpstack-gateway-bridge
4242

4343
run-compose-test:
44-
docker-compose run --rm chirpstack-gateway-bridge make test
44+
docker compose run --rm chirpstack-gateway-bridge make test

0 commit comments

Comments
 (0)