Skip to content

Commit c2a24ef

Browse files
committed
Pin minio image to one able to resolve the seed CSV files we use for tests
1 parent 387a10f commit c2a24ef

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
#!/bin/sh -ex
22

33
echo "Copying the CSV test files into the bucket"
4-
mkdir -p /tmp
5-
rm /tmp/test_csv -rf
6-
cp -r /objectstorage/test_csv /tmp/test_csv
4+
rm /data/test_csv -rf
5+
cp -r /objectstorage/test_csv /data/test_csv
76

87
echo "Starting Minio"
9-
exec /usr/bin/docker-entrypoint.sh server /tmp
8+
exec /usr/bin/docker-entrypoint.sh server /data

test/architecture/docker-compose.core.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,12 @@ services:
4949
- 5431
5050
# Name without an underscore because Minio client really wants to be compliant with the RFC
5151
objectstorage:
52-
image: minio/minio
52+
image: minio/minio:RELEASE.2022-05-19T18-20-59Z.fips
5353
ports:
5454
- '0.0.0.0:9000:9000'
5555
environment:
5656
MINIO_ROOT_USER: minioclient
5757
MINIO_ROOT_PASSWORD: supersecure
58-
MINIO_CI_CD: 'true'
5958
volumes:
6059
# Mount a "bucket" with some CSV files into our object storage
6160
# https://github.com/minio/minio/issues/8949

0 commit comments

Comments
 (0)