Skip to content

Commit

Permalink
Fix command
Browse files Browse the repository at this point in the history
  • Loading branch information
blaginin committed Jan 9, 2025
1 parent 5f13e69 commit b0f0953
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
- name: Setup Minio - S3-compatible storage
working-directory: datafusion-cli
run: |
docker run -d --name minio-container -p 9000:9000 -e MINIO_ROOT_USER=TEST-DataFusionLogin -e MINIO_ROOT_PASSWORD=TEST-DataFusionPassword quay.io/minio/minio -v $(pwd)/../datafusion/core/tests/data:/source server /data
docker run -d --name minio-container -p 9000:9000 -e MINIO_ROOT_USER=TEST-DataFusionLogin -e MINIO_ROOT_PASSWORD=TEST-DataFusionPassword -v $(pwd)/../datafusion/core/tests/data:/source quay.io/minio/minio server /data
docker exec minio-container /bin/sh -c "\
mc ready local
mc alias set localminio http://localhost:9000 TEST-DataFusionLogin TEST-DataFusionPassword && \
Expand Down
2 changes: 1 addition & 1 deletion datafusion-cli/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ To test the S3 integration against [Minio](https://github.com/minio/minio)
First start up a container with Minio and load test files.

```shell
docker run -d \
docker run \
--name minio-container \
-p 9000:9000 \
-e MINIO_ROOT_USER=TEST-DataFusionLogin \
Expand Down

0 comments on commit b0f0953

Please sign in to comment.