Skip to content

Commit

Permalink
backend: change docker-compose to docker compose
Browse files Browse the repository at this point in the history
docker-compose has been dropped from Github Actions Ubuntu runners -
let's use the new standard way.

Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
  • Loading branch information
tormath1 committed Aug 5, 2024
1 parent cd76362 commit 74c4816
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Start postgres dependency
run: |
docker-compose -f backend/docker-compose.test.yaml up -d postgres
docker compose -f backend/docker-compose.test.yaml up -d postgres
- name: Test library
env:
Expand Down
4 changes: 2 additions & 2 deletions backend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ check-code-coverage:

.PHONY: test-service-up
test-service-up:
docker-compose -f ./docker-compose.test.yaml up -d --build
docker compose -f ./docker-compose.test.yaml up -d --build

.PHONY: test-service-down
test-service-down:
docker-compose -f ./docker-compose.test.yaml down
docker compose -f ./docker-compose.test.yaml down

.PHONY: check-backend-with-container
check-backend-with-container: test-service-down
Expand Down

0 comments on commit 74c4816

Please sign in to comment.