Skip to content

Commit

Permalink
Use Docker compose v2 command (#4822)
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Dumas <[email protected]>
  • Loading branch information
imsdu and Simon Dumas authored Apr 3, 2024
1 parent 54214d8 commit 9b07451
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-delta-ship.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
sbt -Dsbt.color=always -Dsbt.supershell=false \
app/Docker/publishLocal
- name: Start services
run: docker-compose -f tests/docker/docker-compose.yml up -d
run: docker compose -f tests/docker/docker-compose.yml up -d
- name: Waiting for Delta to start
run: |
URL="http://localhost:8080/v1/version"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
app/Docker/publishLocal \
storage/Docker/publishLocal
- name: Start services
run: docker-compose -f tests/docker/docker-compose.yml up -d
run: docker compose -f tests/docker/docker-compose.yml up -d
- name: Waiting for Delta to start
run: |
URL="http://localhost:8080/v1/version"
Expand All @@ -43,5 +43,5 @@ jobs:
- name: Stop & clean Docker
if: ${{ always() }}
run: |
docker-compose -f tests/docker/docker-compose.yml down --rmi "local" --volumes
docker compose -f tests/docker/docker-compose.yml down --rmi "local" --volumes
docker system prune --force --volumes
4 changes: 2 additions & 2 deletions tests/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Nexus integration tests

Starts the delta ecosystem with docker-compose and run tests on it
Starts the delta ecosystem with docker compose and run tests on it

First, run:
```shell
docker-compose -f docker/docker-compose.yml up -d
docker compose -f docker/docker-compose.yml up -d
```

Add the following local domains to your `/etc/hosts` file for `S3StorageAccessSpec`:
Expand Down

0 comments on commit 9b07451

Please sign in to comment.