Skip to content

Commit f0262e0

Browse files
committed
ci: update to recent minio
I suspect that the multi-volume thing was required in the older version to allow for versioning. However, this is no longer the case, and in fact MinIO complains if the different folders are on the same volume. So it's easier for testing to just used the one.
1 parent 3658097 commit f0262e0

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

start-services.sh

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,12 @@
33
set -e
44

55
docker run --rm -p 9000:9000 --name sqlite-s3-query-minio -d \
6-
-e 'MINIO_ACCESS_KEY=AKIAIOSFODNN7EXAMPLE' \
7-
-e 'MINIO_SECRET_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY' \
6+
-e 'MINIO_ROOT_USER=AKIAIOSFODNN7EXAMPLE' \
7+
-e 'MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY' \
88
-e 'MINIO_REGION=us-east-1' \
99
--entrypoint sh \
10-
minio/minio:RELEASE.2021-08-05T22-01-19Z \
10+
minio/minio:RELEASE.2023-07-21T21-12-44Z \
1111
-c '
12-
mkdir -p /data1 &&
13-
mkdir -p /data2 &&
14-
mkdir -p /data3 &&
15-
mkdir -p /data4 &&
16-
minio server /data{1...4}
12+
mkdir -p /data
13+
minio server /data
1714
'

0 commit comments

Comments
 (0)