File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ services:
1313 - redpanda
1414 - start
1515 - --smp 2
16- - --memory 2G
1716 - --reserve-memory 0M
17+ - --memory=1G
1818 - --overprovisioned
1919 - --node-id 0
2020 - --check=false
@@ -24,19 +24,21 @@ services:
2424 - PLAINTEXT://redpanda:29092,OUTSIDE://localhost:9092
2525 - --pandaproxy-addr 0.0.0.0:8082
2626 - --advertise-pandaproxy-addr redpanda:8082
27- image : redpandadata/redpanda:v24.1.2
27+ image : redpandadata/redpanda:v25.2.5
2828 ports :
2929 - 8081:8081
3030 - 8082:8082
3131 - 9092:9092
3232 - 29092:29092
3333
3434 minio-server :
35- image : minio/minio:RELEASE.2024-08-26T15-33-07Z
35+ image : minio/minio:RELEASE.2025-09-07T16-13-09Z
3636 command : server /minio --console-address ":9001"
3737 hostname : minio
3838 environment :
3939 MINIO_DOMAIN : minio
40+ MINIO_ACCESS_KEY : minioadmin
41+ MINIO_SECRET_KEY : minioadmin
4042 networks :
4143 default :
4244 aliases :
@@ -56,13 +58,14 @@ services:
5658 - ./minio:/minio
5759
5860 minio-bucket :
59- image : minio/mc
61+ image : minio/mc:RELEASE.2025-08-13T08-35-41Z
6062 depends_on :
6163 - minio-server
6264 entrypoint : >
6365 /bin/sh -c "
64- /usr/bin/mc alias set endpoint http://minio:9000 minioadmin minioadmin;
66+ until ( /usr/bin/mc alias set endpoint http://minio:9000 minioadmin minioadmin) do echo '...waiting...' && sleep 1; done ;
6567 /usr/bin/mc mb endpoint/data;
6668 /usr/bin/mc anonymous set public endpoint/data;
6769 exit 0;
6870 "
71+
You can’t perform that action at this time.
0 commit comments