You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Which issue does this PR close?
- Closes #.
## What changes are included in this PR?
`mc config` is deprecated minio/mc#5206
Similar to fix in iceberg-python and iceberg-go
apache/iceberg-python#2049apache/iceberg-go#444
This PR also updates the image version of `minio:minio` and `minio:mc`
to the latest available tag to pull in the change where `mc config` is
deprecated.
## Are these changes tested?
Copy file name to clipboardExpand all lines: crates/catalog/glue/testdata/glue_catalog/docker-compose.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
18
18
services:
19
19
minio:
20
-
image: minio/minio:RELEASE.2024-03-07T00-43-48Z
20
+
image: minio/minio:RELEASE.2025-05-24T17-08-30Z
21
21
expose:
22
22
- 9000
23
23
- 9001
@@ -30,13 +30,13 @@ services:
30
30
mc:
31
31
depends_on:
32
32
- minio
33
-
image: minio/mc:RELEASE.2024-03-07T00-31-49Z
33
+
image: minio/mc:RELEASE.2025-05-21T01-59-54Z
34
34
environment:
35
35
- AWS_ACCESS_KEY_ID=admin
36
36
- AWS_SECRET_ACCESS_KEY=password
37
37
- AWS_REGION=us-east-1
38
38
entrypoint: >
39
-
/bin/sh -c " until (/usr/bin/mc config host add minio http://minio:9000 admin password) do echo '...waiting...' && sleep 1; done; /usr/bin/mc mb minio/warehouse; /usr/bin/mc policy set public minio/warehouse; tail -f /dev/null "
39
+
/bin/sh -c " until (/usr/bin/mc alias set minio http://minio:9000 admin password) do echo '...waiting...' && sleep 1; done; /usr/bin/mc mb minio/warehouse; /usr/bin/mc policy set public minio/warehouse; tail -f /dev/null "
Copy file name to clipboardExpand all lines: crates/catalog/hms/testdata/hms_catalog/docker-compose.yaml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
18
18
services:
19
19
minio:
20
-
image: minio/minio:RELEASE.2024-03-07T00-43-48Z
20
+
image: minio/minio:RELEASE.2025-05-24T17-08-30Z
21
21
expose:
22
22
- 9000
23
23
- 9001
@@ -30,13 +30,13 @@ services:
30
30
mc:
31
31
depends_on:
32
32
- minio
33
-
image: minio/mc:RELEASE.2024-03-07T00-31-49Z
33
+
image: minio/mc:RELEASE.2025-05-21T01-59-54Z
34
34
environment:
35
35
- AWS_ACCESS_KEY_ID=admin
36
36
- AWS_SECRET_ACCESS_KEY=password
37
37
- AWS_REGION=us-east-1
38
38
entrypoint: >
39
-
/bin/sh -c " until (/usr/bin/mc config host add minio http://minio:9000 admin password) do echo '...waiting...' && sleep 1; done; /usr/bin/mc mb minio/warehouse; /usr/bin/mc policy set public minio/warehouse; tail -f /dev/null "
39
+
/bin/sh -c " until (/usr/bin/mc alias set minio http://minio:9000 admin password) do echo '...waiting...' && sleep 1; done; /usr/bin/mc mb minio/warehouse; /usr/bin/mc policy set public minio/warehouse; tail -f /dev/null "
0 commit comments