Skip to content

Commit

Permalink
✅ Use docker compose instead of docker-compose
Browse files Browse the repository at this point in the history
To fix the CI/CD pipeline.
It looks like the underlying github action image has been updated so it no
longer has the `docker-compose` alias
  • Loading branch information
shankari committed Aug 4, 2024
1 parent 99d9c21 commit 86614ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nominatim-docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:

# Passes the geofabrik key into the docker-compose.yml file.
- name: Test nominatim.py
run: GFBK_KEY=${{ secrets.GEOFABRIK_API }} docker-compose -f emission/integrationTests/docker-compose.yml up --exit-code-from web-server
run: GFBK_KEY=${{ secrets.GEOFABRIK_API }} docker compose -f emission/integrationTests/docker-compose.yml up --exit-code-from web-server


2 changes: 1 addition & 1 deletion .github/workflows/test-with-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
run: echo Smoke test

- name: Run the tests using docker-compose
run: docker-compose -f setup/docker-compose.tests.yml up --exit-code-from web-server
run: docker compose -f setup/docker-compose.tests.yml up --exit-code-from web-server

0 comments on commit 86614ed

Please sign in to comment.