Skip to content

Commit

Permalink
upgrade docker-compose to v3 version (#912)
Browse files Browse the repository at this point in the history
  • Loading branch information
Roiocam authored Aug 14, 2024
1 parent 6f576ce commit b275897
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: setup redis
run: docker-compose up -d
run: docker compose up -d
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
Expand All @@ -36,4 +36,4 @@ jobs:
run: mvn -B -DjacocoReports=jetcache-test/target/site/jacoco-aggregate/jacoco.xml clean install org.eluder.coveralls:coveralls-maven-plugin:4.3.0:report -DrepoToken=${{ secrets.COV_TOKEN }} -Dtick=3
- name: Build without coveralls report
if: ${{ env.cov_token == '' }}
run: mvn -B clean test
run: mvn -B clean test
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ jdk:
services:
- docker
before_install:
- docker-compose up -d
- docker compose up -d
script: mvn -B -DjacocoReports=jetcache-test/target/site/jacoco-aggregate/jacoco.xml clean test jacoco:report-aggregate coveralls:report
2 changes: 1 addition & 1 deletion Building.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
1.1 Run redis
At first we run redis server using Docker, under jetcache directory, run:

docker-compose up
docker compose up

This will run 1 redis server with 2 slaves, 3 sentinels, and 6 redis cluster node (3 masters, 3 slaves).

Expand Down

0 comments on commit b275897

Please sign in to comment.