Skip to content

Commit

Permalink
Change docker compose command (#13159)
Browse files Browse the repository at this point in the history
  • Loading branch information
domoberzin committed Aug 5, 2024
1 parent 499bde8 commit 2393888
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/axe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Update Property File
run: mv src/e2e/resources/test.ci-${{ matrix.browser }}.properties src/e2e/resources/test.properties
- name: Run Solr search service + local Datastore emulator
run: docker-compose up -d
run: docker compose up -d
- name: Create Config Files
run: ./gradlew createConfigs testClasses generateTypes
- name: Install Frontend Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
run: mv src/test/resources/test.ci-${{ matrix.os }}.properties src/test/resources/test.properties
- name: Run Solr search service
if: matrix.os == 'ubuntu-latest' # Docker does not work well on Windows env
run: docker-compose run -d -p 8983:8983 solr
run: docker compose run -d -p 8983:8983 solr
- name: Run Backend Tests
run: |
./gradlew createConfigs componentTests --continue
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-sql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Update Property File
run: mv src/e2e/resources/test.ci-${{ matrix.browser }}.properties src/e2e/resources/test.properties
- name: Run Solr search service + local Datastore emulator
run: docker-compose up -d
run: docker compose up -d
- name: Create Config Files
run: ./gradlew createConfigs testClasses generateTypes
- name: Install Frontend Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Update Property File
run: mv src/e2e/resources/test.ci-${{ matrix.browser }}.properties src/e2e/resources/test.properties
- name: Run Solr search service + local Datastore emulator
run: docker-compose up -d
run: docker compose up -d
- name: Create Config Files
run: ./gradlew createConfigs testClasses generateTypes
- name: Install Frontend Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jdk17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
- name: Update Property File
run: mv src/test/resources/test.ci-ubuntu-latest.properties src/test/resources/test.properties
- name: Run Solr search service
run: docker-compose run -d -p 8983:8983 solr
run: docker compose run -d -p 8983:8983 solr
- name: Run Backend Tests
run: ./gradlew createConfigs componentTests --continue
2 changes: 1 addition & 1 deletion .github/workflows/jdk21.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
- name: Update Property File
run: mv src/test/resources/test.ci-ubuntu-latest.properties src/test/resources/test.properties
- name: Run Solr search service
run: docker-compose run -d -p 8983:8983 solr
run: docker compose run -d -p 8983:8983 solr
- name: Run Backend Tests
run: ./gradlew createConfigs componentTests --continue
2 changes: 1 addition & 1 deletion .github/workflows/lnp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Create Config Files
run: ./gradlew createConfigs
- name: Run Solr search service + local Datastore emulator
run: docker-compose up -d
run: docker compose up -d
- name: Start Server
run: ./gradlew serverRun &
- name: Wait until server is running
Expand Down

0 comments on commit 2393888

Please sign in to comment.